首页 > 代码库 > 查看端口占用

查看端口占用

windows下

  1.netstat -aon|findstr 8001 查看最后一列pid

  2.tasklist|findstr pid

杀掉

linux下

  netstat –apn | grep 8080

  或

  ps -aux | grep tomcat

 

ps -aux|grep <进程号>

 

查看端口占用