Ubuntu查看端口使用情况,使用netstat命令:
查看已经连接的服务端口(ESTABLISHED) netstat -a 查看所有的服务端口(LISTEN,ESTABLISHED) netstat -ap
查看指定端口,可以结合grep命令:
netstat -ap | grep 8080
也可以使用lsof命令:
lsof -i:8888
若要关闭使用这个端口的程序,使用kill + 对应的pid
标签:ESTABLISHED,查看,端口,占用,netstat,命令,Ubuntu From: https://www.cnblogs.com/wuhen520/p/17746373.htmlkill -9 PID号