安装Kibana6.3.2与Elasticsearch6.3.2集成

1、下载官网kibana-6.3.2-linux-x86_64.tar.gz文件

#下载
wget https://artifacts.elastic.co/downloads/kibana/kibana-6.3.2-linux-x86_64.tar.gz
#解压
tar xzvf kibana-6.3.2-linux-x86_64.tar.gz

2、修改config/kibana.yml配置文件

vim config/kibana.yml
#端口
server.port: 5601

#服务器IP
server.host: "192.168.1.210"

#elasticsearch服务器
elasticsearch.url: "http://192.168.1.210:9200"

注意:默认server.host=localhost,这样在自己本机启动可以,如果是想让网络上其他人使用,就需要改成本机IP地址。否则,访问时会提示:

dial tcp 192.168.1.210:5601: connectex: No connection could be made because the target machine actively refused it.

3、启动

nohup bin/kibana &

查看端口占用命令

netstat -apn |grep 5601
#杀掉进程
kill -9 xxxx

4、浏览器访问默认kibana端口5601

猜你喜欢

转载自blog.csdn.net/fishinhouse/article/details/81323959