查看已经连接的服务端口(ESTABLISHED) netstat -a 查看所有的服务端口(LISTEN,ESTABLISHED) netstat -ap 查看指定端口,可以结合grep命令: netstat -ap | grep 8080 也可以使用lsof命令: lsof -i:8888 若要关闭使用这个端口的程序,使用kill + 对应的pid kill -9 PID号 参考: https://www.cnblogs.com/fengff/p/8985129.html
原文地址:https://www.cnblogs.com/sea-stream/p/11100341.html
时间: 2024-10-28 21:09:32