- 启动elasticsearch的时候其他服务器无法访问,更改es配置中的
# ---------------------------------- Network ----------------------------------- # # Set the bind address to a specific IP (IPv4 or IPv6): # network.host: 改成自己的IPV4 #Windows 打开cmd 输入ipconfig 找到 IPv4 地址 . . . . . . . . . . . . : ****** 输入改IP即可 #linux-mac 输入 ifconfig 找到ip改下即可 #
-
启动kibana修改配置
elasticsearch.url: "ip:port" #ip可以用es的主机ip server.host:"" #同一个电脑改为上文查到的ip #不是同一台电脑就在查一次
-
logstash的配置
output{ elasticsearch{ hosts=>["ip:9200"] #这个ip需要访问的主机ip即可 index => "logstash-%{+xxxx.ww}" } stdout{codec => rubydebug} }
-
注意:!!! index => "value" value 的值不能大写