Linux Centos7安装Elasticsearch5.x版本

准备工作:

1、安装JDK1.8版本,Elasticsearch官方建议安装Oracle JDK8


这里演示YUM和RPM两种方式安装Elasticsearch

下载并安装 public signing key:

rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

1、通过yum安装Elasticsearch

添加elasticsearch的repo,在/etc/yum.repos.d/下新增elasticsearch.repo

vi /etc/yum.repos.d/elasticsearch.repo
粘贴下面内容到elasticsearch.repo中

[ elasticsearch - 5.x ]
name = Elasticsearch repository for 5.x packages
baseurl = https : //artifacts.elastic.co/packages/5.x/yum
gpgcheck = 1
gpgkey = https : //artifacts.elastic.co/GPG-KEY-elasticsearch
enabled = 1
autorefresh = 1
type = rpm - md

使用yum命令安装Elasticsearch

yum install elasticsearch


2、通过rpm安装Elasticsearch

下载elasticsearch-5.5.1.rpm

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.1.rpm

使用rpm命令安装
rpm --install elasticsearch-5.5.1.rpm

安装完之后启动Elasticsearch

systemctl start elasticsearch.service

以上就是通过yum和npm方式安装Elasticsearch的步骤,安装完之后检验一样是否启动成功

访问本地9200端口(Elasticsearch的默认端口)

 curl http://localhost:9200/ 

输出以下信息,说明成功启动!
{
  "name" : "_PT-a5P",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "_cH5BPCiTV6r0vF0eWiWIw",
  "version" : {
    "number" : "5.5.1",
    "build_hash" : "19c13d0",
    "build_date" : "2017-07-18T20:44:24.823Z",
    "build_snapshot" : false,
    "lucene_version" : "6.6.0"
  },
  "tagline" : "You Know, for Search"
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值