Elasticsearch 6.x 安装

Elasticsearch6.x 安装时一件很麻烦的事,特写一篇详细的安装教程,希望能帮助到安装过程中遇到困难的小伙伴。

  1. 安装Java环境,不作具体的操作了
  2. 官网下载Elasticsearch安装包,Elasticsearch-6.2.4.tar.gz
  3. 解压安装包,tar -zxvf Elasticsearch-6.2.4.tar.gz
  4. 进入bin目录执行elasticsearch脚本,问题从此开始

错误一:

elasticsearch不能用root用户启动,所以必须新建一个elsearch用户执行elasticsearch目录下的所有操作
错误提示如下图:

         Elasticsearch 6.x 安装_第1张图片

解决方法:新建elsearch用户组及用户,赋予该用户 elasticsearch目录下的所有操作的所有权限

      执行命令 groupadd elsearch
useradd elsearch -g elsearch
chown -R elsearch:elsearch /usr/local/elasticsearch/
根目录新建data目录 mkdir /data 用户存储elasticsearch的日志
赋权限 chown -R elsearch:elsearch /data/

  1.    修改配置文件 vim /usr/local/elasticsearch/config/elasticsearch.yml

      Elasticsearch 6.x 安装_第2张图片

  1. 切换到elsearch用户,执行elasticsearch脚本命令
很坎坷,继续解决错误
错误一: max virtual memory areas vm.max_map_count [ 65530 ] likely too low, increase to at least [ 262144 ]
解决方法:在/etc/sysctl.conf文件中添加vm.max_map_count=655360
vim /etc/sysctl.conf
sysctl -p
错误二: max file descriptors [ 10240 ] for elasticsearch process likely too low, increase to at least [ 65536 ] max number of threads [ 1024 ] for user [elsearch] likely too low, increase to at least [ 2048 ]
解决方法:vim /etc/security/limits.conf 添加如下内容
* soft nofile 65536
* hard nofile 131072
* soft nproc 4096
* hard nproc 4096
vim /etc/security/limits.d/90-nproc.conf 添加如下内容
* soft nproc 4096
  1. 切换到elsearch用户,再次启动
继续报错
错误信息:ERROR: bootstrap checks failed system call filters failed to install; check the logs and fix your configuration or disable system call filters at your own risk
解决方法:ES5.0之后默认bootstrap.system_call_filter 为true 进行检测,检测失败报错,需要在elasticsearch
配置文件中添加 bootstrap.system_call_filter: flase

Elasticsearch 6.x 安装_第3张图片

注意冒号和false中间有空格。
  1. 再次启动终于正常了(有可能还有问题,如果有继续找)
  2. 浏览器中输入:htt://ip:9200访问出现下面数据表示安装成功
Elasticsearch 6.x 安装_第4张图片

你可能感兴趣的:(Elasticsearch)