Centos解决supervisor端口被占用问题

Centos解决supervisor端口被占用问题

supervisor端口被占用问题:

Error: Another program is already listening on a port that one of our HTTP servers is configured to

#查询supervisord进程
ps -ef|grep supervisord
#根据pid杀掉进程
kill -9 pid

删除软连接:

# 该软连接在/etc/supervisord.conf的前几行可以看到 如果在运行可能会导致出错
# 找不到可以尝试:
# find / -name supervisor.sock
# unlink /name/supervisor.sock

unlink /var/run/supervisor/supervisor.sock

查询端口杀掉进程:

#根据端口杀掉进程
netstat -ntulp | grep 你的端口
#根据pid杀掉进程
kill -9 pid

附件下载

回复列表



回复操作

正在加载验证码......

请先拖动验证码到相应位置

发布时间:2022-04-07 15:19:27

修改时间:2022-04-07 15:33:00

查看次数:2083

评论次数:0