Ubuntu终端命令--查看端口占用及关闭

Posted 枫飞飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu终端命令--查看端口占用及关闭相关的知识,希望对你有一定的参考价值。

Ubuntu查看端口使用情况,使用netstat命令:

查看已经连接的服务端口(ESTABLISHED)

netstat -a

查看所有的服务端口(LISTEN,ESTABLISHED)

netstat -ap

查看指定端口,可以结合grep命令:

netstat -ap | grep 8080

 也可以使用lsof命令:

lsof -i:8888

若要关闭使用这个端口的程序,使用kill + 对应的pid

kill -9 PID号

以上是关于Ubuntu终端命令--查看端口占用及关闭的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu查看端口占用及关闭

Dos命令查看端口占用及关闭进程

Dos命令查看端口占用及关闭进程

查看占用的端口及关闭对应的进程

windows中,端口查看&关闭进程及Kill使用

cmd查看端口占用情况 和 关闭被占用的端口