一般這種問題都是配置的問題,看看是不是哪里寫錯了或者編碼問題,你可以進入elasticsearch安裝目錄找到logs目錄,打開elasticsearch.log查看詳細的報錯內容【log目錄下的文件可清空,方便排查】

報錯:
[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
解決方案:
在elasticsearch的config目錄下,修改elasticsearch.yml配置文件,將下面的配置加入到該配置文件中:
#配置以下三者,最少其一 #[discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] #這里的node-1為node-name配置的值 cluster.initial_master_nodes: ["node-1"]
我的完整配置:
cluster.name: my-application node.name: node-1 network.host: 0.0.0.0 http.port: 9200 #這里的node-1為node-name配置的值 cluster.initial_master_nodes: ["node-1"] http.cors.enabled: true http.cors.allow-origin: "*" node.master: true node.data: true
