Elasticsearch:在 CentOS 7 上安装 Ela
2020-06-30 本文已影响0人
dex0423
1. 环境
- CentOS 7;
- JAVA 1.8.0(安装配置 JDK,可参阅《JAVA:CentOS 7 安装配置 JDK 1.8》;);
2. 下载
- 下载 elasticsearch:https://www.elastic.co/cn/downloads/past-releases#kibana
- 下载 kibana:https://www.elastic.co/cn/downloads/past-releases#kibana
- 注意:elasticsearch 和 kibana 版本必须一样!
3. 安装
- 启动 CentOS 机器;
- 使用文件传送工具将 elasticsearch 和 kibana 的 rpm 文件传送到 CentOS 机器,文件传送工具自行选择;
- 使用以下命令导入存储库的GPG密钥:
sudo rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
- 打开文本编辑器并创建以下文件:
sudo nano /etc/yum.repos.d/elasticsearch.repo
- 将以下内容粘贴到文件中:
[elasticsearch-6.x]
name=Elasticsearch repository for 6.x packages
baseurl=https://artifacts.elastic.co/packages/6.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md
-
Ctrl + X 保存文件,然后关闭文本编辑器;
-
安装Elasticsearch软件包:
sudo yum install elasticsearch
- 安装过程完成后,启动并启用服务:
sudo systemctl enable elasticsearch.service
sudo systemctl start elasticsearch.service
- 安装结束。