版本: ES 7.7, kibana 7.7, window10
修改ES绑定的ip
ES默认使用localhost访问, 不能用本机ip地址. 现在需要修改配置, 以便让小伙伴也可以访问.
配置文件: config/elasticsearch.yml
修改 network.host:
network.host: 0.0.0.0
然后启动时出现错误:
ERROR: [1] bootstrap checks failed
[1]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured
解决办法:
开放"cluster.initial_master_nodes"设置:
ok
修改kibana绑定的ip
配置文件: /config/kibana.yml
修改 server.host
和 elasticsearch.hosts
(因为前面修改了ES的host) 即可.