端口占用清除

  1. 查看端口占用
    lsof -i :80
    lsof | grep :80

lsof需要sudo

netstat -tln | grep 80

  1. 杀掉进程
    kill -9 PID

你可能感兴趣的:(端口占用清除)