Linux查询端口由哪个程序或进程创建使用
2021/8/27 7:07:42
本文主要是介绍Linux查询端口由哪个程序或进程创建使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
环境
- 系统:Debian10
过程
- 查看端口号
netstat -tnl
- 这里测试8080端口
$ sudo lsof -i :8080 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME nginx 1139 root 13u IPv4 44778 0t0 TCP localhost:45648->localhost:http-alt (ESTABLISHED) java 4841 root 55u IPv6 45438 0t0 TCP *:http-alt (LISTEN) $ sudo lsof -i :139 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME smbd 2653 root 33u IPv6 31000 0t0 TCP *:netbios-ssn (LISTEN) smbd 2653 root 35u IPv4 31002 0t0 TCP *:netbios-ssn (LISTEN)
- 这里已经出来了,使用ps或者其他手段查看
$ ps -aux | grep 1139 $ ps -aux | grep nginx root 1137 0.0 0.0 8392 900 ? Ss 10:14 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on; root 1138 0.0 0.5 51604 45568 ? S 10:14 0:00 nginx: worker process root 1139 0.0 0.5 51604 45568 ? S 10:14 0:00 nginx: worker process root 1140 0.0 0.5 51604 45568 ? S 10:14 0:00 nginx: worker process root 1141 0.0 0.5 51604 45568 ? S 10:14 0:00 nginx: worker process uos 5098 0.0 0.0 9292 892 pts/0 S+ 10:43 0:00 grep nginx
参考
manpage
lsof
这篇关于Linux查询端口由哪个程序或进程创建使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南