“Linux查看端口占用情况”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(创建页面,内容为“=lsof= lsof -i:端口号 =netstat= netstat -ntlp //查看当前所有tcp端口 netstat -ntulp | grep 80 //查看所有80端口使用情况 netstat -ntulp | g…”)
 
→‎lsof
第1行: 第1行:
 
=lsof=
 
=lsof=
 +
 
  lsof -i:端口号
 
  lsof -i:端口号
 +
 +
[[每天一命令之lsof]]
 +
 
=netstat=
 
=netstat=
 
  netstat -ntlp  //查看当前所有tcp端口
 
  netstat -ntlp  //查看当前所有tcp端口

2020年11月4日 (三) 03:18的版本

lsof

lsof -i:端口号

每天一命令之lsof

netstat

netstat -ntlp   //查看当前所有tcp端口
netstat -ntulp | grep 80   //查看所有80端口使用情况
netstat -ntulp | grep 3306   //查看所有3306端口使用情况

see also

Linux 查看端口占用情况