一.elasticsearch安装
1. 下载安装包: elasticsearch-6.2.4.rpm 上传到/home/hadoop 下
2. 直接解压安装:[root@cib129 hadoop]# rpm -ivh elasticsearch-6.2.4.rpm
3. 修改配置:[root@cib129 hadoop]# vi /etc/elasticsearch/elasticsearch.yml
如下修改IP和端口:
network.host: 192.168.9.129
http.port: 9200
4. 启动服务: [root@cib129 hadoop]# service elasticsearch start
5. 查看服务是否启动:[root@cib129 hadoop]# service elasticsearch status -l
6. 浏览器查看如下:
二.安装ElasticSearch-Head
1. 编译并安装git : 下载:git-2.17.0.tar.gz
tar -xvf git-2.17.0.tar.gz
cd git-2.17.0
执行如下命令:编译并指定安装目录进行安装
[root@cib129 git-2.17.0]# ./configure --prefix=/usr/local/git-2.17.0 && make install
[root@ci