赞
踩
列出所有占用的端口号
netstat -anp
找到需要释放的端口号
netstat -anp | grep 8081
找到端口号对应的PID(注意:普通用户需要加上sudo)
lsof -i:8081
杀掉对应进程
kill PID