linux 查看端口占用
1. 查看端口占用:
[root@centos9 /]# netstat -tunlp
注:
- -t或–tcp:显示TCP传输协议的连线状况;
- -u或–udp:显示UDP传输协议的连线状况;
- -n或–numeric:直接使用ip地址,而不通过域名服务器;
- -l或–listening:显示监控中的服务器的Socket;
- -p或–programs:显示正在使用Socket的程序识别码和程序名称;
2. 查看指定的端口号的情况:
[root@centos9 /]# netstat -tunlp | grep 10081
3.查看指定进程的情况:
[root@centos9 /]# netstat -tunlp | grep 16390