Elasticsearch安装

Elastic Search 配置

Elastic Search 2.0 为了安全性考虑,默认只监听本地127.0.0.1网口,而且1.X版本的多播方式
自动发现es节点也关闭了。

1.修改config/elasticsearch.yml文件,配置如下:

1
2
3
4
5
# network.host: 192.168.0.1
network.host: _non_loopback_
# The default list of hosts is ["127.0.0.1", "[::1]"]
discovery.zen.ping.multicast.enabled: false
discovery.zen.ping.unicast.hosts: ["es0", "es1", "es2"]

主要作用就是设置es监听非loopback网口,关闭multicast功能,配置unicast hosts, 需要将hosts修改成自己的es node的hostname。

2.Elastic Search 2.0 默认不支持root直接启动了,测试了一下1.7.2还是支持root直接启动的。

你可能感兴趣的:(Elasticsearch安装)