文章目录
- # 安装
- 方法一: 使用apt安装
- 1、导入存储库的GPG密钥
- 2、将Elasticsearch存储库添加到apt的sources.list
- 3、apt安装Elasticsearch
- 方法二:使用DEB文件安装
- 1、下载DEB文件
- 下载途径一:
- 下载途径二(推荐):
- 2、安装
- 总结:
- # 配置 (版本:7.x)
- 一、远程访问
- 二、修改集群和节点名字
# 安装
方法一: 使用apt安装
1、导入存储库的GPG密钥
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
命令执行成功,应该输出OK,这意味着密钥已经成功导入,并且来自此存储库的软件包将被视为受信任的软件包。
2、将Elasticsearch存储库添加到apt的sources.list
sudo sh -c 'echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" > /etc/apt/sources.list.d/elastic-7.x.list'
如果要安装Elasticsearch的早期版本,将上面命令中的7.x
更改为所需的版本。
3、apt安装Elasticsearch
sudo apt update
sudo apt install elasticsearch
安装过程完成后,Elasticsearch服务将不会自动启动。要启动服务并启用服务运行,请执行以下操作:
sudo systemctl enable --now elasticsearch.service
要验证Elasticsearch是否正在运行,请使用curl将HTTP请求发送到9200localhost 上的端口:
curl -X GET "localhost:9200/"
应该看到类似以下内容:
{
"name" : "parasaga",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "An80wXNCSduuQZ1g3qi4iQ",
"version" : {
"number" : "7.13.2",
"build_flavor" : "default",
"build_type" : "deb",
"build_hash" : "4d960a0733be83dd2543ca018aa4ddc42e956800",
"build_date" : "2021-06-10T21:01:55.251515791Z",
"build_snapshot" : false,
"lucene_version" : "8.8.2",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
方法二:使用DEB文件安装
方法一只能安装某个大版本的最新稳定版,不能指定安装某个小版本。
使用DEB文件安装,可以实现安装指定版本。
1、下载DEB文件
下载途径一:
打开 https://www.elastic.co/cn/downloads/elasticsearch ,如果当前版本不是想要安装的版本,则点击如图链接:
以7.13.2版本为例,
分别下载DEB文件和SHA文件,将两个文件放到Ubuntu系统上。
下载途径二(推荐):
也可以在Ubuntu上通过命令下载DEB文件和SHA文件:
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.13.2-amd64.deb
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.13.2-amd64.deb.sha512
2、安装
shasum -a 512 -c elasticsearch-7.13.2-amd64.deb.sha512
sudo dpkg -i elasticsearch-7.13.2-amd64.deb
sudo systemctl enable --now elasticsearch.service
总结:
这两种方法安装后,都可以通过systemctl控制:
systemctl status elasticsearch
systemctl start elasticsearch
systemctl stop elasticsearch
systemctl restart elasticsearch
# 配置 (版本:7.x)
官方配置说明:
https://www.elastic.co/guide/en/elasticsearch/reference/7.x/important-settings.html
一、远程访问
sudo vim /etc/elasticsearch/elasticsearch.yml
将包含network.host
的行取消注释,然后将值更改为0.0.0.0
network.host: 0.0.0.0
discovery.seed_hosts: ["192.168.2.89"]
discovery.seed_hosts
详细说明:
https://www.elastic.co/guide/en/elasticsearch/reference/7.x/important-settings.html#discovery-settings
重新启动Elasticsearch服务,以使更改生效:
sudo systemctl restart elasticsearch
直接在浏览器中访问:http://192.168.2.89:9200/ ,验证是否生效;生效会有如下显示;
{
"name" : "es-node-zyl",
"cluster_name" : "es-zyl",
"cluster_uuid" : "An80wXNCSduuQZ1g3qi4iQ",
"version" : {
"number" : "7.13.2",
"build_flavor" : "default",
"build_type" : "deb",
"build_hash" : "4d960a0733be83dd2543ca018aa4ddc42e956800",
"build_date" : "2021-06-10T21:01:55.251515791Z",
"build_snapshot" : false,
"lucene_version" : "8.8.2",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
二、修改集群和节点名字
sudo vim /etc/elasticsearch/elasticsearch.yml
cluster.name: elasticsearch_production
node.name: elasticsearch_005_data