Kibana-----------安装过程

0、查看kibana进程:

#使用以下命令就可以查到进程id 了 。
netstat -tunlp|grep 5601
netstat -tunlp|grep kibana

 

#开启防火墙,并开启5601端口
systemctl status firewalld
firewall-cmd --permanent --zone=public -add-port=5601/tcp;


1、下载安装

#本机已下载完成
cd /usr/local/src
rz                  #选择kibana压缩包
tar -zxvf kibana-6.5.0-linux-x86_64.tar.gz
mv kibana-6.5.0-linux-x86_64 /usr/local/tools/
#修改配置文件
server.port: 5601
server.host: "172.24.44.100"
server.name: "node"
elasticsearch.url: "http://39.105.33.157:9200"

 2.启动报错:

"warning","migrations","pid":6181,
"message":"Another Kibana instance appears to be migrating the index. 
Waiting for that migration to complete. 
If no other Kibana instance is attempting migrations, 
you can get past this message by deleting index .kibana_index_1 and restarting Kibana.

3.解决:

#查找对应端口
ps -ef|grep node命令或netstat -anltp|grep 5601
 
#杀死进程
kill -9 24338
 
#删除Kibana索引
curl -XDELETE http://localhost:9200/.kibana*
 
#重新启动
./bin/kibana


————————————————
版权声明:本文为CSDN博主「hello_yajing」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/hello_yajing/article/details/105813174

你可能感兴趣的:(linux,Elasticsearch,Kibana)