简言
centos系统,检测端口时使用lsof命令发现lsof功能未开启,如下图
[root@iZwz9501p9hnysn92hpx27Z tnt_game]# lsof
-bash: lsof: command not found
安装lsof
centos系统下可以直接使用yum安装lsof功能,如下图
yum可自动完成安装lsof
lsof的常用格式:lsof -i:端口号
以80端口为例,测试如下图
[root@iZwz9501p9hnysn92hpx28Z conf]# lsof -i:80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 42314 root 6u IPv4 272880 0t0 TCP *:http (LISTEN)
nginx 43948 nobody 6u IPv4 272880 0t0 TCP *:http (LISTEN)
可以看到lsof已经可以正常使用了,nginx正在监听80端口