码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu16.04采用apt-get安装指定版本es(elasticsearch)

时间:2020-06-19 23:13:14      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:sudo   tar   enable   height   启动   wget   emc   search   systemctl   

1、安装open-jdk

sudo apt-get install openjdk-8-jdk

2、官网查找需要的es版本

es官网:https://www.elastic.co/cn/downloads/elasticsearch

点击如下图【apt-get】

技术图片

 

查找自己想要的版本,点击使用deb方式安装,如下图:

 技术图片

3、安装es-7.6.2

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.0-amd64.deb
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.0-amd64.deb.sha512
shasum -a 512 -c elasticsearch-7.8.0-amd64.deb.sha512 
sudo dpkg -i elasticsearch-7.8.0-amd64.deb

4、修改配置文件elasticsearch.yml

vi /etc/elasticsearch/elasticsearch.yml

技术图片

技术图片 技术图片

 5、启动es

systemctl enable elasticsearch.service    #设置es开机自启动
sudo systemctl start elasticsearch.service    #启动es
sudo systemctl stop elasticsearch.service    #停止es


#查看es运行状态
service elasticsearch status

#查看报错日志
tail -f /var/log/elasticsearch/elasticsearch.log

6、检查是否运行正常

curl localhost:9200

如下图:安装启动正常

技术图片

 

ubuntu16.04采用apt-get安装指定版本es(elasticsearch)

标签:sudo   tar   enable   height   启动   wget   emc   search   systemctl   

原文地址:https://www.cnblogs.com/nimantou/p/13166745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!