当前位置:网站首页>Kibana installation and configuration

Kibana installation and configuration

2022-07-05 01:22:00 Fisher3652

1. Download installation package

 Insert picture description here

2. Upload to server

 Insert picture description here

  • decompression
tar -zxvf kibana-7.14.0-linux-x86_64.tar.gz

 Insert picture description here

3. Create user

4. To configure

  • Modify the configuration file /kibana-7.14.0-linux-x86_64/config/kibana.yml

 Insert picture description here

  • Mainly modify the local address and es Address
server.host: "192.168.42.111"
elasticsearch.hosts: ["http://192.168.42.111:9200"]

 Insert picture description here

5. Start the service

  • function /kibana-7.14.0-linux-x86_64/bin Under the kibana
./bin/kibana
  • http://192.168.42.111:5601/app/kibana

 Insert picture description here
 Insert picture description here

  • Check the port
#-t (tcp) Show only  tcp  Related options 
#-u (udp) Show only  udp  Related options 
#-n  Reject alias , Can display all the numbers into numbers .
#-l  List only what is in  Listen ( monitor )  Service status of 
#-p  Show the name of the program that established the relevant link 
netstat -tunlp|grep 5601
  • because kibana It's using node.js Written , So we need to grep node
ps -ef|grep node

 Insert picture description here

原网站

版权声明
本文为[Fisher3652]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202141033177602.html

随机推荐