准备工作 安装Node JS
curl -O https://nodejs.org/dist/v8.11.3/node-v8.11.3-linux-x64.tar.gz
tar -zxvf node-v8.11.3-linux-x64.tar.gz
mv node-v8.11.3-linux-x64 /usr/local/node
vim ~/.bash_profile #永久设置环境变量,只影响当前用户
或
vim /etc/profile #永久设置环境变量,影响所有用户
export NODE_HOME=/usr/local/node
export PATH=NODE_HOME/bin
source ~/.bash_profile 或者 source /etc/profile #使配置立即生效(修改哪个文件就source哪个文件,使其生效)
node -v
npm -v
一、head
- 0、在线安装
./bin/elasticsearch-plugin mobz/elasticsearch-head
ES集群管理工具,它是完全由html5编写的独立网页程序,可视化管理集群状态。
下面是解压安装
git clone [git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
- 2、启动
npm run start
open http://localhost:9100/
- 3、停止
netstat -anp |grep 9100 # 通过端口查找pid
ps -ef | head -1;ps -ef | grep grunt #通过名称查找pid,(elasticsearch-head启动的是grunt server)
kill 87523 # 杀死查找到的pid(进程id)
- 4、问题
如果显示elasticsearch未连接。则需要配置elasticsearch,然后重启elasticsearch
vim elasticsearch/config/elasticsearch.yml
修改如下参数为"0.0.0.0"
network.host: "0.0.0.0"
末尾添加如下参数
http.cors.enabled: true
http.cors.allow-origin: "*"
二、Kibana
- 1、下载
官网:https://www.elastic.co/downloads/kibana - 2、安装
tar -xzf kibanaxxx.tar.gz
cd kibanaHOME
- 3、启动
./bin/kibana
nohup ./bin/kibana //后台运行
- 4、停止
ps -ef | grep node # 查找kibana的pid(./bin/../node/bin/node --no-warnings ./bin/../src/cli)
kill pid
- 5、访问
http://127.0.0.1:5601/ 或者 curl -X GET 'http://127.0.0.1:5601'
- 6、问题
解决外网无法访问:
vim ./config/kibana.yml
修改如下参数为"0.0.0.0"即可
network.host: "0.0.0.0"
修改监听端口
vim ./config/kibana.yml
修改如下端口号为自己本机elasticsearch master的端口号"9201""即可 , 默认9200
elasticsearch.url: "http://localhost:9201"