elasticsearch.tar.gz linux安装启动
时间: 2023-08-20 09:04:58 浏览: 173
以下是在Linux系统上通过tar.gz安装和启动Elasticsearch的步骤:
1. 首先,您需要从Elasticsearch的官网下载最新版本的tar.gz文件。您可以使用以下命令下载Elasticsearch 7.14.0:
```
curl -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.14.0-linux-x86_64.tar.gz
```
2. 下载完成后,您可以使用以下命令将tar.gz文件解压到您想要安装的目录:
```
tar -zxvf elasticsearch-7.14.0-linux-x86_64.tar.gz -C /path/to/install
```
其中,/path/to/install为您想要安装Elasticsearch的目录。
3. 解压完成后,您可以进入Elasticsearch的bin目录:
```
cd /path/to/install/elasticsearch-7.14.0/bin
```
4. 启动Elasticsearch:
```
./elasticsearch
```
5. 如果Elasticsearch已经启动,您可以使用以下命令检查Elasticsearch是否正在运行:
```
curl http://localhost:9200/
```
如果返回以下类似的信息,则表示Elasticsearch已经启动:
```
{
"name" : "node-1",
"cluster_name" : "mycluster",
"cluster_uuid" : "1Ks-2xITSgK8O6VXr2WmPQ",
"version" : {
"number" : "7.2.0",
"build_flavor" : "default",
"build_type" : "tar",
"build_hash" : "508c38a",
"build_date" : "2019-06-20T15:54:18.811730Z",
"build_snapshot" : false,
"lucene_version" : "8.0.0",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
```
如果您无法通过Web界面访问Elasticsearch,请确保您已经开放了9200端口,并且防火墙或安全组没有阻止对该端口的访问。
6. 如果您想在后台运行Elasticsearch,请使用以下命令:
```
./elasticsearch -d
```
这将启动Elasticsearch并将其作为守护进程运行。
7. 如果您想停止Elasticsearch,请使用以下命令:
```
./elasticsearch stop
```
这将停止Elasticsearch的进程。
阅读全文