Elasticsearch 7.x安装部署
CentOS7.x安装Elasticsearch环境,为了减少在运行时出错,需要提前对服务器进行一些配置。
安装环境
- CentOS 7.x
- JDK 8
- Elasticsearch 7.7.0
安装步骤
一、服务器配置
前提:修改服务器配置,使用root
或者有sudo
权限的用户。
修改系统文件描述符
- 查看文件描述符大小,默认1024:
ulimit -n
- 修改
limits.conf
文件,在文件尾部加上配置,保存退出:vim /etc/security/limits.conf
* soft nofile 65536 * hard nofile 65536
- 重新打开新的窗口进行查看,文件描述符改为65536。
修改vm.max_map_count
- 启动问题复现,elasticsearch用户拥有的内存权限太小,至少需要262144:
ERROR: bootstrap checks failed max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
- 临时修改
vm.max_map_count
,重启之后会失效:# 执行命令 sysctl -w vm.max_map_count=262144 # 查看修改结果 sysctl -a|grep vm.max_map_count
- 永久修改
vm.max_map_count
属性,修改sysctl.conf
文件,在文件尾部添加内容:vim /etc/sysctl.conf
vm.max_map_count=262144
- 查看修改结果:
sysctl -p
二、Elasticsearch配置
前提: Elasticsearch启动和所属用户/组需要使用普通用户。
使用默认配置启动
- 使用普通用户上传下载的Elasticsearch 7.7.0压缩包文件
elasticsearch-7.7.0-linux-x86_64.tar.gz
,解压到自己的目录;tar -zxvf elasticsearch-7.7.0-linux-x86_64.tar.gz
- 进入解压目录:
/kaysen/daemon/elasticsearch-7.7.0
,启动ES;# 控制台启动 ./bin/elasticsearch # 后台启动 ./bin/elasticsearch -d
- 查看启动结果:
curl 127.0.0.1:9200
{ "name" : "localdomain", "cluster_name" : "elasticsearch", "cluster_uuid" : "FMntfVvDTXaIUufpfjk-6w", "version" : { "number" : "7.7.0", "build_flavor" : "default", "build_type" : "tar", "build_hash" : "81a1e9eda8e6183f5237786246f6dced26a10eaf", "build_date" : "2020-05-12T02:01:37.602180Z", "build_snapshot" : false, "lucene_version" : "8.5.1", "minimum_wire_compatibility_version" : "6.8.0", "minimum_index_compatibility_version" : "6.0.0-beta1" }, "tagline" : "You Know, for Search" }