ELK6.2.2 (elasticsearch+logstash+kibana) open source log analysis platform construction (2): simple construction of kibana

1 Download, unzip, rename

[superuser@ft3q-app48 es]$ wget https://artifacts.elastic.co/downloads/kibana/kibana-6.2.2-linux-x86_64.tar.gz
[superuser@ft3q-app48 es]$ tar -zxvf kibana-6.2.2-linux-x86_64.tar.gz
[superuser@ft3q-app48 es]$ mv kibana-6.2.2-linux-x86_64 kibana

2 configuration

[superuser@ft3q-app47 kibana]$ vim config/kibana.yml
#端口
server.port: 5601
#监听地址 本机
server.host: "0.0.0.0"
#命名
server.name: "kibanaServer47"
#es集群地址
elasticsearch.url: "http://192.168.193.47:9200"
#kibana入es的索引
kibana.index: ".kibana"
#x-pack插件安装后的用户名,密码
elasticsearch.username: "kibana"
elasticsearch.password: "kibana"

3 Start, run in the background

[superuser@ft3q-app47 kibana]$ nohup ./bin/kibana &

4 Check the operation

Browser view http://192.168.193.47:5601

Perfect!

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325015259&siteId=291194637