当前位置:   article > 正文

docker centos7离线安装ElasticSearch单机版

docker centos7离线安装ElasticSearch单机版


本文以 elasticsearch-7.8.1为例。

1.下载ES并解压

cd /root/install
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.1-linux-x86_64.tar.gz
tar -zxvf elasticsearch-7.8.1-linux-x86_64.tar.gz
  • 1
  • 2
  • 3

2.新建elasticsearch用户

使用root用户登录,新建elasticsearch用户。

useradd elasticsearch
passwd elasticsearch
chown -R elasticsearch:elasticsearch /root/install/elasticsearch-7.8.1
  • 1
  • 2
  • 3

3.修改ES配置文件

vi /opt/elasticsearch-7.8.1/config/elasticsearch.yml
  • 1
###############################################################
cluster.name: elasticsearch    #集群名
node.name: node-1    #节点名称
path.data: /opt/data/es/data    #数据存储路径
path.logs: /opt/data/es/logs    #日志存储路径
network.host: 0.0.0.0    #本机IP,可以写0.0.0.0
http.port: 9200    #访问端口
discovery.seed_hosts: ["127.0.0.1"]    #通信地址
cluster.initial_master_nodes: ["node-1"]    #master节点名称
http.cors.enabled: true #是否支持跨域,默认为false
http.cors.allow-origin: "*"    #当设置允许跨域,默认为*,表示支持所有域名
###############################################################
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

4.启动ES服务

# 切换用户 
su - elasticsearch
# 启动ES
sh /root/install/elasticsearch-7.8.1/bin/elasticsearch
  • 1
  • 2
  • 3
  • 4

5.设置开机启动

vi /etc/init.d/elasticsearch
  • 1
#!/bin/bash
#
#chkconfig: 345 63 37
#description: elasticsearch
#processname: elasticsearch-7.8.1

ES_HOME=/root/install/elasticsearch-7.8.1

case $1 in
  start)
    su - elasticsearch -c "$ES_HOME/bin/elasticsearch -d -p pid"
    echo "elasticsearch is started"
    ;;
  stop)
    pid=`cat $ES_HOME/pid`
    kill -9 $pid
    echo "elasticsearch is stopped"
    ;;
  restart)
    pid=`cat $ES_HOME/pid`
    kill -9 $pid
    echo "elasticsearch is stopped"
    sleep 1
    su - es -c "$ES_HOME/bin/elasticsearch -d -p pid"
    echo "elasticsearch is started"
    ;;
  *)
    echo "start|stop|restart"
    ;;  
esac
exit 0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
chmod 777 /etc/init.d/elasticsearch
chkconfig --add elasticsearch #设置开机启动
chkconfig --del elasticsearch #删除开机启动

chkconfig elasticsearch on    #打开开机启动
chkconfig elasticsearch off   #关闭开机启动
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/341468
推荐阅读
相关标签
  

闽ICP备14008679号