elasticsearch-7.2.0单机版搭建

  1. 下载elasticsearch-7.2.0,下载地址:https://www.elastic.co/cn/downloads/elasticsearch
  2. 上传下载的压缩包到linux服务器,解压文件
tar -zxvf elasticsearch-7.2.0-linux-x86_64.tar.gz //解压压缩包
cd elasticsearch-7.2.0 //进入目录
mkdir data //创建data文件夹,保存数据
  1. 修改Elasticsearch配置:config/elasticsearch.yml
cluster.name: apm-application
node.name: node-1
path.data: /app/elasticsearch/elasticsearch-7.2.0/data
path.logs: /app/elasticsearch/elasticsearch-7.2.0/logs
# ES监听的ip地址
network.host: 0.0.0.0
cluster.initial_master_nodes: ["node-1"]
 
# 需要开启跨域才能给elasticsearch-head,kibana等连接
http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: Authorization,X-Requested-With,Content-Length,Content-Type
  1. 尝试启动Elasticsearch。
./bin/elasticsearch -d
  1. 启动失败报错:通过日志可以发现,es不允许linux通过root用户启动,原因是出于系统安全考虑设置的条件。由于Elasticsearch可以接收用户输入的脚本并且执行,为了系统安全考虑,直接使用root权限会带来很大风险,所以我们创建一个elsearch用户
Caused by: java.lang.RuntimeException: can not run elasticsearch as root
    at org.elasticsearch.bootstrap.Bootstrap.initializeNatives(Bootstrap.java:106) ~[elasticsearch-7.2.0.jar:7.2.0]
    at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:195) ~[elasticsearch-7.2.0.jar:7.2.0]
    at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:342) ~[elasticsearch-7.2.0.jar:7.2.0]
    at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:132) ~[elasticsearch-7.2.0.jar:7.2.0]
    ... 6 more
  1. 创建Elasticsearch启动用户,并设置权限等
groupadd elsearch
useradd elsearch -g elsearch -p elasticsearch
chown -R elsearch:elsearch elasticsearch-7.2.0

7.使用elsearch用户,再次尝试启动

cd elasticsearch-7.2.0
su elsearch
./bin/elasticsearch -d

8.启动失败,有两个错误,是因为有两个参数的值太小

ERROR: [2] bootstrap checks failed
[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
[2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

问题解决办法

# 第一个问题:修改/etc/security/limits.conf文件,添加或修改如下行
hard    nofile           65536
soft    nofile           65536
 
# 第二个问题:修改 /etc/sysctl.conf 文件,添加如下行
vm.max_map_count=262144
  1. 使用elsearch用户,再次尝试启动(Elasticsearch默认内存是1G,因为我的服务器内存是足够的,没有修改配置)
# 修改内存大小 config/jvm.options
-Xms200m
-Xmx200m
  1. 查看是否启动成功:访问ip:9200,出现以下信息即为启动成功

你可能感兴趣的:(elasticsearch-7.2.0单机版搭建)