shell编程_lsof命令

2021/8/8 7:06:40

本文主要是介绍shell编程_lsof命令,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

lsof -i:port | grep pid

例子:(根据端口号查看pid)

lsof -i:5432

[postgres@localhost ~]$ lsof -i:5432
COMMAND   PID     USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
postgres 4662 postgres    3u  IPv4  48819      0t0  TCP *:postgres (LISTEN)
postgres 4662 postgres    4u  IPv6  48820      0t0  TCP *:postgres (LISTEN)
postgres 9268 postgres    9u  IPv4  98826      0t0  TCP localhost:postgres->localhost:globmsgsvc (ESTABLISHED)
postgres 9269 postgres    9u  IPv4  98828      0t0  TCP localhost:postgres->localhost:pvsw (ESTABLISHED)

  

  



这篇关于shell编程_lsof命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程