1、查看端口被哪个程序占用
sudo lsof -i tcp:port
sudo lsof -i tcp:8080
2、查找到当前进程的PID,可以用以下命令,将进程杀死
sudo kill -9 PID
sudo kill -9 750