This commit is contained in:
2022-04-18 11:21:20 +08:00
commit 45a7af638f
210 changed files with 8997 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# 部署三节点 es 集群
- 部署集群,有三个节点,每个节点有三个 ip
- 每个节点的 127.0.1.x 和 127.0.2.x 用于 http 请求
- 每个节点的 127.0.3.x 用于节点间通信
- 根据实际环境修改
- docker-compose.yml
- 创建目录
```
grep '\<source:' docker-compose.yml | cut -d: -f2 | xargs mkdir -p
```
- 启动
```
docker-compose up -d
```