其他分享
首页 > 其他分享> > Zookeeper启动失败:Error contacting service. It is probably not running.

Zookeeper启动失败:Error contacting service. It is probably not running.

作者:互联网

报错

Error contacting service. It is probably not running.

在这里插入图片描述

查看日志

./zkServer.sh start-foreground

Zookeeper启动失败

定位问题:8080端口被占用。

查看 8080 端口的进程号

netstat -tunlp | grep 8080

linux查看端口被占用情况

杀死8080端口占用的进程

kill -9 PID

在这里插入图片描述

问题解决

在这里插入图片描述

标签:8080,service,占用,Zookeeper,端口,running,contacting
来源: https://blog.csdn.net/weixin_45883310/article/details/118074422