Elasticsearch7.4工作笔记_03_【安装过程中的问题2】

问题1、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

修改:elasticsearch.yml
取消注释保留一个节点

cluster.initial_master_nodes: ["node-1"]

这里的node-1,是上面的节点名称。

 ---------------

问题2:shasum command not found

解决方法:

yum install perl-Digest-SHA
原文地址:https://www.cnblogs.com/zzming/p/11733043.html