enable etcd ports in firewall of centos.

pull/230/head
Chuanyi Li 2018-06-10 21:06:47 +08:00
parent 18c56f0a1f
commit ca5e440846
1 changed files with 8 additions and 0 deletions

View File

@ -110,6 +110,14 @@ systemctl status etcd
在所有的 kubernetes master 节点重复上面的步骤,直到所有机器的 etcd 服务都已启动。
注意如果日志中出现连接异常信息请确认所有节点防火墙是否开放2379,2380端口。
以centos7为例
``` bash
firewall-cmd --zone=public --add-port=2380/tcp --permanent
firewall-cmd --zone=public --add-port=2379/tcp --permanent
firewall-cmd --reload
```
## 验证服务
在任一 kubernetes master 机器上执行如下命令: