首页 > 代码库 > 查找占用端口的应用

查找占用端口的应用

windows

  netstat -ano | find "8080"

mac,Linux

  lsof -i:8700 或者 lsof -i | grep 8700