ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[Elasticsearch Reference](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html) ## 搭建集群环境 [下载安装包](https://www.elastic.co/downloads/past-releases#) [安装步骤](https://www.elastic.co/guide/en/elasticsearch/reference/current/zip-targz.html) - 下载并解压 - 修改配置文件 > default : $ES_HOME/config/elasticsearch.yml 一版需要修改的几个地方如下: ``` # 集群名称 cluster.name: my-application # 节点名称 node.name: node-1 # 绑定的IP network.host: 192.168.1.106 # 开始发现新节点的IP discovery.zen.ping.unicast.hosts: ["192.168.1.108", "192.168.1.106"] # 最多发现主节点的个数 discovery.zen.minimum_master_nodes: 1 # 当重启集群节点后最少启动N个节点后开始做恢复 gateway.recover_after_nodes: 3 # 在一台机器上最多启动的节点数 node.max_local_storage_nodes: 1 ``` 具体配置文件解释见: [elasticsearch配置文件详解](https://www.cnblogs.com/sunxucool/p/3799190.html) 配置集群模式,在其它节点修改以上对应配置项,启动即可。 - 启动 ``` ./bin/elasticsearch -d ```