kibana.yml
server.port: 5601
server.host: "10.x.y.z"
elasticsearch.url: "http://10.x.y.z:9200"
logging.quiet: true
elasticsearch.yml
cluster.name: es
node:
name: 10.8.8.x
master: true
data: true
path.data: /app/data/elastichsearch
path.logs: /app/logs/elastichsearch
bootstrap.memory_lock: true
network.host: 0.0.0.0
http.port: 9400
transport.tcp.port: 9500
http.cors.enabled: true
http.cors.allow-origin: "*"
####cluster config##############
discovery.seed_hosts:
- 10.8.8.x
- 10.8.8.y
- 10.8.8.z
cluster.initial_master_nodes:
- 10.8.8.x
- 10.8.8.y
- 10.8.8.z
网友评论