CentOS 7 安装 Kibana

wget https://artifacts.elastic.co/downloads/kibana/kibana-7.8.1-x86_64.rpm
rpm --install kibana-7.8.1-x86_64.rpm

vi /etc/kibana/kibana.yml
server.port: 5601
server.host: "192.168.146.133"
elasticsearch.hosts: ["http://192.168.146.133:9200"]

systemctl enable kibana
systemctl start kibana
systemctl status kibana -l

curl http://192.168.146.133:5601/

Error:
Kibana server is not ready yet
Or:
{"type":"log","@timestamp":"2020-08-18T03:24:58Z","tags":["warning","elasticsearch","admin"],"pid":7227,"message":"No living connections"}
解决:
检查ElasticSearch服务是否正常