CenterOS下配置Elasticsearch环境及集群搭建

CenterOS下配置Elasticsearch环境及集群搭建

先去官网,下载Linux环境下的 Elasticsearch包。

https://www.elastic.co/downloads/elasticsearch

linux安装内存建议1g内存以上。这里我用的Elasticsearch版本为elasticsearch-6.4.3。

一、搭建环境

  1. 上传elasticsearch安装包到centeros
scp G:\Optimize\Util\elasticserch\elasticsearch-6.4.3.tar.gz [email protected]:/home/bxc/bxc/es
  1. 解压elasticsearch
tar -zxvf elasticsearch-6.4.3.tar.gz
  1. 修改config/elasticsearch.yml
network.host: 192.168.2.112
http.port: 9200
  1. 启动
    进入bin目录
./elasticsearch
  1. 启动elasticsearch报错

can not run elasticsearch as root

因为安全问题elasticsearch不让用root用户直接运行,所以要创建新用户。

 adduser bxc
 chown -R bxc elasticsearch-6.4.3/

继续启动
6. 继续报错

[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
[2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

修改/etc/sysctl.conf,在下面追加一行:

vm.max_map_count=655360

刷新配制

sysctl -p

修改/etc/security/limits.conf,在下面追加:

* soft nofile 65536
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
  1. 再次启动
    如果失败的话重启系统。

  2. 释放端口

firewall-cmd --zone=public --add-port=9200/tcp --permanent
firewall-cmd --zone=public --add-port=9300/tcp --permanent
firewall-cmd --reload

二、搭建集群

服务器名称 IP地址
node-1 192.168.2.112
node-2 192.168.2.139
node-3 192.168.2.133

每个节点修改config/elasticsearch.yml

cluster.name: myes  ###保证三台服务器节点集群名称相同
node.name: node-1 #### 每个节点名称不一样 其他两台为node-1 ,node-2
network.host: 192.168.2.112 #### 实际服务器ip地址
discovery.zen.ping.unicast.hosts: ["192.168.2.112", "192.168.2.139","192.168.2.133"]##多个服务集群ip
discovery.zen.minimum_master_nodes: 1

三个节点修改完后,启动

在浏览器输入,即可看到三个节点的连接情况,带*号的为主节点。

http://192.168.2.112:9200/_cat/nodes?pretty

你可能感兴趣的:(搜索引擎)