一、Linux 上运行 Elasticsearch
- Download the Elasticsearch archive for your OS:
curl -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.6.1-linux-x86_64.tar.gz
- Extract the archive:
tar -xvf elasticsearch-7.6.1-linux-x86_64.tar.gz
- Start Elasticsearch from the
bin
directory:
cd elasticsearch-7.6.1/bin
./elasticsearch
- 构建多节点 es 集群:
./elasticsearch -Epath.data=data2 -Epath.logs=log2
./elasticsearch -Epath.data=data3 -Epath.logs=log3
每一个 node 都会有 unique ID。上面命令是本地启动的 es 节点,会自动加入到第一个节点中去。
- 查看 cluster 状态
curl -X GET "localhost:9200/_cat/health?v&pretty"
使用 curl 命令:通用格式如下
curl -X<VERB> '<PROTOCOL>://<HOST>:<PORT>/<PATH>?<QUERY_STRING>' -d '<BODY>'
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于