kibana基本安裝使用(二)

  1. 下在kibnaba,我這裏版本爲 kafka_2.12-2.1.1
  2. 安裝
rpm -ivh kafka_2.12-2.1.1
  1. 修改配置文件 vim /etc/kibana/kibana.yml

# Kibana is served by a back end server. This setting specifies the port to use.
server.port: 8086

# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server.host: "0.0.0.0"

# The URL of the Elasticsearch instance to use for all your queries.
elasticsearch.url: "http://localhost:8087"
  1. 添加系統啓動
/sbin/chkconfig --add kibana
  1. 啓動,重啓,查看狀態
 systemctl start kibana
 systemctl status kibaba
  1. 瀏覽器中訪問,必須啓動kinaba和es
    在這裏插入圖片描述
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章