美文网首页
Linux查看端口占用情况

Linux查看端口占用情况

作者: Children乏 | 来源:发表于2022-06-18 12:59 被阅读0次

lsof命令

格式:“lsof -i:端口号”

lsof -i:27017

netstat命令

格式:“netstat -tunlp | grep 端口号”
可以显示tcp、udp的端口和进程等相关情况

[root@5kdj7 mongo]# netstat -tunlp | grep 27017
tcp        0      0 0.0.0.0:27017           0.0.0.0:*               LISTEN      3283/nginx: master  
[root@5kdj7 mongo]# 

相关文章

网友评论

      本文标题:Linux查看端口占用情况

      本文链接:https://www.haomeiwen.com/subject/asbkvrtx.html