单机版可以自己做实验和测试
https://www.elastic.co/cn/downloads/past-releases#elasticsearch
选择 一个自己想安装的版本,我选择的是
cd /opt/shan
tar -zxvf elasticsearch-7.17.5-linux-x86_64.tar.gz -C ./
mv elasticsearch-7.17.5 es
chown -R es:es /opt/shan/es/
7、修改配置文件
vim /opt/shan/es/config/elasticsearch.yml
8、在yml文件中新增
# 加入如下配置cluster.name: elasticsearchnode.name: node-1network.host: 0.0.0.0http.port: 9200cluster.initial_master_nodes: ["node-1"]
9、修改/etc/security/limits.conf
# 在文件末尾中增加下面内容# 每个进程可以打开的文件数的限制es soft nofile 65536es hard nofile 65536
10、修改/etc/security/limits.d/20-nproc.conf
# 在文件末尾中增加下面内容# 每个进程可以打开的文件数的限制es soft nofile 65536es hard nofile 65536# 操作系统级别对每个用户创建的进程数的限制* hard nproc 4096# 注: * 带表 Linux 所有用户名称
11、修改/etc/sysctl.conf
# 在文件中增加下面内容# 一个进程可以拥有的 VMA( 虚拟内存区域 ) 的数量 , 默认值为 65536vm.max_map_count=655360
12、重新加载
sysctl -p
13、切换用户
su es
14、启动es
cd /opt/shan/es/
# 启动bin/elasticsearch# 后台启动bin/elasticsearch -d
15、在浏览器中 查看是否es启动成功(如果访问不到看看是否是linux防火墙没关)