1. 查看端口被哪个程序占用2. 看到进程的PID,可以将进程杀死。 1. 查看端口被哪个程序占用sudo lsof -i tcp:port如:sudo lsof -i tcp:8080 2. 看到进程的PID,可以将进程杀死。sudo kill -9 PID如:sudo kill -9 750