Linux下端口被占用解决 发表回复 查找被占用的端口 netstat -tunlp |grep 8080 netstat -tln netstat -tln | grep 8080 查看端口属于哪个程序?端口被哪个进程占用 lsof -i:8080 杀掉占用端口的进程 kill -9 进程id