标签:style color ar 使用 strong sp on ad bs
1.查找被占用的端口
netstat -tln
netstat -tln | grep 8083
netstat -tln 查看端口使用情况,而netstat -tln | grep 8083 则是只查看端口8083的使用情况
2.查看端口属于哪个程序?端口被哪个进程占用
lsof -i :8083
3.杀掉占用端口的进程
kill -9 进程id
标签:style color ar 使用 strong sp on ad bs
原文地址:http://my.oschina.net/kelvinline/blog/335889