linux 查看端口占用

linux 查看端口占用

本文介绍一下linux查看端口占用基本命令:


1. 查看端口占用:

[root@centos9 /]# netstat -tunlp

linux 查看端口占用_第1张图片

注:

  1. -t或–tcp:显示TCP传输协议的连线状况;
  2. -u或–udp:显示UDP传输协议的连线状况;
  3. -n或–numeric:直接使用ip地址,而不通过域名服务器;
  4. -l或–listening:显示监控中的服务器的Socket;
  5. -p或–programs:显示正在使用Socket的程序识别码和程序名称;

2. 查看指定的端口号的情况:

[root@centos9 /]# netstat -tunlp | grep 10081

look

3.查看指定进程的情况:

[root@centos9 /]# netstat -tunlp | grep 16390

linux 查看端口占用_第2张图片

你可能感兴趣的:(linux)