端口被占用

# windows

查看是哪个进程占用的端口:

netstat -aon | findstr "8080"
# log中最后的数字就是PID
1
2

查看PID对应的进程:

tasklist | findstr "PID"
1

也可以直接到任务管理器中查看PID对应的进程,决定是否结束进程。

# linux

查看占用端口的进程:

lsof -i:8080
1

杀掉进程:

kill -9 PID
1