ELK笔记(一):Centos7部署elasticsearch-7.8.0集群

1 部署前准备

1.1 系统选择

均为centos7.9系统,内核版本为:3.10.0-1160.el7.x86_64

本来想选择centos8,无奈8的文件数限制修改方式跟7不一样,网上实在找不到相关文档,如果有知道的朋友可以在评论区指教下

1.2 主机列表

c1/c2/c3做master,c10/c11/c12做data,修改主机/etc/hostname并加入/etc/hosts中

cat /etc/hosts
10.0.8.1    c1  c1.pangfaheng.com
10.0.8.2    c2  c2.pangfaheng.com
10.0.8.3    c3  c3.pangfaheng.com
10.0.8.10   c10 c10.pangfaheng.com
10.0.8.11   c11 c11.pangfaheng.com
10.0.8.12   c12 c12.pangfaheng.com

1.3 下载、解压缩安装包

mkdir /opt/module
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.0-linux-x86_64.tar.gz
tar -zxvf elasticsearch-7.8.0-linux-x86_64.tar.gz -C /opt/module
mv /opt/module/elasticsearch-7.8.0/ /opt/module/elasticsearch-cluster/

1.4 创建用户

elasticsearch不允许root账户启动,需要为每台实例创建es用户

useradd es
passwd es
#userdel es
chown -R es:es  /opt/module/elasticsearch-cluster

2 修改配置文件

2.1 elastic search配置文件

#配置文件默认是全部注释的,所以直接在文档下方加入如下配置
#集群名称
cluster.name: elasticsearch-cluster

#节点名称,跟hostname对应,每个节点的名称不能重复
node.name: c1

#ip 地址,跟hostname对应,每个节点的名称不能重复
network.host: c1

#是不是有资格成为主节点
node.master: true

#是不是有资格成为数据节点
node.data: false

#默认端口号
http.port: 9200

# head 插件需要这打开这两个配置
http.cors.allow-origin: "*"
http.cors.enabled: true
http.max_content_length: 200mb

#es7.x 之后新增的配置,初始化一个新的集群时需要此配置来选举 master,也就是每个集群只能有一个master,而这个是一开始的master,后续这台主机挂了再由node.master决定选举新的master
cluster.initial_master_nodes: ["c1"]

#es7.x 之后新增的配置,节点发现
discovery.seed_hosts: ["c1:9300","c2:9300","c3:9300","c10:9300","c11:9300","c12:9300"]

gateway.recover_after_nodes: 2
network.tcp.keep_alive: true
network.tcp.no_delay: true
transport.tcp.compress: true

#集群内同时启动的数据任务个数,默认是 2 个
cluster.routing.allocation.cluster_concurrent_rebalance: 16

#添加或删除节点及负载均衡时并发恢复的线程个数,默认 4 个
cluster.routing.allocation.node_concurrent_recoveries: 16

#初始化数据恢复时,并发恢复线程的个数,默认 4 个
cluster.routing.allocation.node_initial_primaries_recoveries: 16

2.2 OS配置文件

/etc/security/limits.conf

vim /etc/security/limits.conf
# 在文件末尾中增加下面内容
# 每个进程可以打开的文件数的限制
es soft nofile 65536
es hard nofile 65536

/etc/security/limits.d/20-nproc.conf

# 在文件末尾中增加下面内容
# 每个进程可以打开的文件数的限制
es soft nofile 65536
es hard nofile 65536
# 操作系统级别对每个用户创建的进程数的限制
* hard nproc 4096
# 注:* 带表 Linux 所有用户名称

/etc/sysctl.conf

vim /etc/sysctl.conf
# 在文件中增加下面内容
# 一个进程可以拥有的 VMA(虚拟内存区域)的数量,默认值为 65536
vm.max_map_count=655360
sysctl -p

3 启动

3.1 命令行启动

切换es账户再启动,如果提示报错可以重新执行chown授权下,这里启动时需要注意不要一次性全部启动,要逐个实例启动

su es
cd /opt/module/elasticsearch-cluster/
#启动
bin/elasticsearch
#后台启动
bin/elasticsearch -d -p pid

3.2 开机自启动

vim /lib/systemd/system/elasticsearch.service
[Unit]
Description=elasticsearch
After=network.target
[Service]
Type=simple
User=es
Group=es
LimitNOFILE=100000
LimitNPROC=100000
Restart=no
ExecStart=/opt/module/elasticsearch-cluster/bin/elasticsearch
PrivateTmp=true
[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl enable elasticsearch
systemctl start elasticsearch

4 验证

4.1 elasticsearch-head

1、下载elasticsearch-head
下载地址:https://github.com/mobz/elasticsearch-head
使用方式:添加到谷歌插件中,然后连接集群任意节点,比如:http://10.0.8.1:9200/
结果如下,其中星号代表master:
在这里插入图片描述

4.2 Postman

连接集群任意节点,比如:http://10.0.8.1:9200/,get http://10.0.8.11:9200/_cat/nodes
结果如下,其中*号代表master:
在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值