1. # ps aux | grep 服务名称(ps 的参数是可以颠倒使用没问题)
2. # netstat -tunple | grep 服务端口
3.bind() 80 in using
代表的含义 80 端已经被占用,可以使用 # netstat -tunple | grep 80 查看是哪个服务占据该端口,然后使用 pkill -9 服务名称 关闭此服务。
本文共 233 字,大约阅读时间需要 1 分钟。
1. # ps aux | grep 服务名称(ps 的参数是可以颠倒使用没问题)
2. # netstat -tunple | grep 服务端口
3.bind() 80 in using
代表的含义 80 端已经被占用,可以使用 # netstat -tunple | grep 80 查看是哪个服务占据该端口,然后使用 pkill -9 服务名称 关闭此服务。
转载于:https://my.oschina.net/u/3585265/blog/3006826