一、 环境准备
Java环境1.8以上
机器如下
node1 192.168.157.128
node2 192.168.157.129
node3 192.168.157.130
二、下载elasticsearch
Download Elasticsearch | Elastic
三、安装elasticsearch
1. 将安装包上传到/opt/apps目录下
2. 解压
tar -zxvf elasticsearch-8.4.2-linux-x86_64.tar.gz
3. 进入elasticsearch-8.4.2,创建data目录
mkdir data
4. 编辑config目录下得elasticsearch.yml配置文件
node1配置如下,其他节点只需要改变node.name 和 host即可。
cluster.name: es-cluster
node.name: node-1
path.data: /opt/apps/elasticsearch-8.4.2/data
path.logs: /opt/apps/elasticsearch-8.4.2/logs
network.host: 192.168.157.128
network.bind_host: 0.0.0.0
network.publish_host: 192.168.157.128
http.port: 9200
discovery.seed_hosts: ["192.168.157.128", "192.168.157.129", "192.168.157.130"]
cluster.initial_master_nodes: ["node-1"]
xpack.security.enabled: false
xpack.security.transport.ssl.enabled: false
5. 创建es启动用户
# 创建es组
groupadd es
# 创建es用户并在es组中
useradd es -g es
# 设置es密码
passwd es
6. 其他系统设置
# 修改limits.conf文件
vi /etc/security/limits.conf
es hard nofile 65536
es soft nofile 65536
# 修改sysctl.conf
vi /etc/sysctl.conf
vm.max_map_count=655360
7. 修改elasticsearch-8.4.2目录所属者和所属组
chown -R es:es /opt/apps/elasticsearch-8.4.2
8. 启动elasticsearch
切换es用户,在bin目录下执行如下命令即可
./elasticsearch
四、验证是否安装完成
使用浏览器访问192.168.157.128:9200/_cat/nodes 查看各个节点信息,打星号的表示为主节点。
五、问题总结
1. 不能用root启动elasticsearch
2. max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535]
# 修改limits.conf文件
vi /etc/security/limits.conf
es hard nofile 65536
es soft nofile 65536
# 修改sysctl.conf
vi /etc/sysctl.conf
vm.max_map_count=655360
3. Transport SSL must be enabled if security is enabled. Please set [xpack.security.transport.ssl.enabled] to [true] or disable security by setting [xpack.security.enabled] to [false]文章来源:https://www.toymoban.com/news/detail-412228.html
xpack.security.enabled: false
xpack.security.transport.ssl.enabled: false
至此elasticsearch集群的搭建就结束了,大家也去试试吧。文章来源地址https://www.toymoban.com/news/detail-412228.html
到了这里,关于Elasticsearch-8.4.2 集群安装的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!