Linux下进程及端口查询汇总
根据端口查进程
lsof -i:port
netstat -nap | grep port
根据进程号查端口
lsof -i | grep pid
netstat -nap | grep pid
根据进程名查找pid、port
ps -ef | grep tomcat
ps -ef | grep pid
netstat无法显示PID或进程名
$ netstat -nap | grep 8080
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp6 0 0 :::8080 :::* LISTEN -
执行netstat -anop
后得到如上结果,有些端口占用没有进程的pid和Program Name,使用root执行即可
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/24/summary-of-process-and-port-query-under-linux/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
Linux下进程及端口查询汇总
根据端口查进程
lsof -i:port
netstat -nap | grep port
根据进程号查端口
lsof -i | grep pid
netstat -nap | grep pid
根据进程名查找pid、port
ps -ef | g……
文章目录
关闭
共有 0 条评论