Linux查看端口进程并杀死 西门

查看端口进程并杀死

  • 查看端口进程
netstat -apn | grep 8088
  • 暴力杀死
kill -9 PID号
  • 温柔杀死
kill -15 PID号
原文地址:https://www.cnblogs.com/ximensama/p/14697036.html