200605-Centos 安装ElasticSearch

文章目录
  1. 1. ES安装流程
    1. a. 下载
    2. b. 解压启动
    3. c. 启动测试
  • II. 其他
    1. 1. 一灰灰Blog: https://liuyueyi.github.io/hexblog
    2. 2. 声明
    3. 3. 扫描关注
  • 本文记录Centos 7.5 安装 ElasticSearch 6.8.5 版本的全过程

    1. ES安装流程

    es的运行依赖jdk,所以需要先安装好java环境,我们这里用的jdk1.8,这里不额外说明jdk环境的安装流程

    a. 下载

    首先到目标网站,查询需要下载的版本 : https://www.elastic.co/cn/downloads/past-releases#elasticsearch

    本文选择6.8.5(主要是为了和SpringBoot 2.2.0-RELEASE对上)

    1
    wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.8.5.tar.gz

    b. 解压启动

    下载完之后,直接解压,并进入目录,

    1
    2
    unzip elasticsearch-6.8.5.tar.gz
    cd elasticsearch-6.8.5

    修改配置,指定数据存储和日志路径,支持外部访问

    1
    2
    3
    4
    5
    6
    7
    8
    vim conf/elasticsearch.yml

    # 请确保下面两个目录存在,且拥有访问权限
    path.data: /data/es/data
    path.logs: /data/es/logs

    # 本机ip
    network.host: 192.168.0.174

    c. 启动测试

    直接运行bin目录下的elasticsearch即可启动es,当然也可以以后台方式启动

    1
    2
    3
    4
    5
    6
    7
    vim starth.sh

    nohup bin/elasticsearch 1> /dev/null 2>&1 &
    echo $! 1> pid.log

    # 执行starth.sh脚本,运行
    sh start.sh

    本机访问:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    curl http://192.168.0.174:9200/

    {
    "name" : "ZyI14BD",
    "cluster_name" : "elasticsearch",
    "cluster_uuid" : "YYFtAHGOSS6ijjDf4VuDoA",
    "version" : {
    "number" : "6.8.4",
    "build_flavor" : "default",
    "build_type" : "tar",
    "build_hash" : "bca0c8d",
    "build_date" : "2019-10-16T06:19:49.319352Z",
    "build_snapshot" : false,
    "lucene_version" : "7.7.2",
    "minimum_wire_compatibility_version" : "5.6.0",
    "minimum_index_compatibility_version" : "5.0.0"
    },
    "tagline" : "You Know, for Search"
    }

    II. 其他

    1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

    一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛

    2. 声明

    尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激

    3. 扫描关注

    一灰灰blog

    QrCode

    评论

    Your browser is out-of-date!

    Update your browser to view this website correctly. Update my browser now

    ×