Cannot open channel to 2 at election address zoo2/172.18.0.101:3888 java.net.ConnectException: Connection refused (Connection refused)
时间: 2023-11-27 10:48:21 浏览: 139
Java中Connection timed out和Connection refused的区别讲解
根据提供的引用内容,这个错误可能是由于zoo.cfg配置文件中的IP和端口不正确或者网络和端口没有正确开放导致的。您可以按照以下步骤进行排查:
1.检查zoo.cfg配置文件中的IP和端口是否正确,确保它们与myid文件中的数字对应。
2.检查网络是否正常,可以通过ping IP的方式检查。
3.检查端口是否开放,可以使用以下命令检查端口是否开放:
```shell
firewall-cmd --query-port=2888/tcp
```
如果端口没有开放,可以使用以下命令开放端口:
```shell
firewall-cmd --permanent --add-port=2888/tcp
```
然后重启防火墙:
```shell
firewall-cmd --reload
```
阅读全文