linux查询80端口,Linux 查看 80 端口的占用情况

lsof -i:端口号

eg:

lsof -i:80

lsof -i:21

[root@localhost ~]# lsof -i:

COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME

httpd root 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

httpd nagios 3u IPv4 0t0 TCP *:http (LISTEN)

lsof(list open files)是一个列出当前系统打开文件的工具。

实例2:查看谁正在使用某个文件,也就是说查找某个文件相关的进程

命令:

lsof /bin/bash

输出:

你可能感兴趣的:(linux查询80端口)