# 指定集群名称
cluster.name: yurun-stage-es
# nodename
node.name: yurun-stage-database
# 是否可以当master节点
node.master: true
# 是否可以当数据节点
node.data: true
# 数据位置
path.data: /usr/local/elasticsearch/data
#日志位置
path.logs: /usr/local/elasticsearch/logs
# 锁内存
bootstrap.memory_lock: true
# 连接地址
network.host: xxxxx
# Http可访问的端口
http.port: 9200
# 发现地址列表,配置所有可能成为master的节点地址,端口不写默认 transport.port。默认9300
discovery.zen.ping.unicast.hosts: ["10.11.7.24"]
# 下列为主机名形式
# discovery.zen.ping.unicast.hosts: ["yurun-stage-database"]
#
# 最少存活多少个节点 master可用
discovery.zen.minimum_master_nodes: 1
# http跨域设置
http.cors.allow-origin: "/.*/"
http.cors.enabled: true
http.cors.allow-headers: X-Requested-With,X-Auth-Token,Content-Type, Content-Length, Authorization
http.cors.allow-credentials: true
也就是说stage环境下,es是一个单节点的集群。其实默认也是