http://blog.csdn.net/spring21st/article/details/8621343spring
Linux 查看端口占用並殺掉 分類: LAMP 2013-02-28 12:01 464人閱讀 評論(0) 收藏 舉報 1. 查看端口號佔用狀況:tcp
[plain] view plaincopy netstat -apn|grep 80.net
tcp 0 0 10.65.42.27:80 172.22.142.20:62771 ESTABLISHED6426/lighttpdblog
2. 肯定進程號進程
爲上面標紅顯示get
找到進程號之後,再使用如下命令查看詳細信息:grep
[plain] view plaincopy ps -aux|grep <進程號>端口
eg: ps -aux | grep 6426 bae 6426 0.0 0.2 133724 22848 ? Sl Feb27 0:22 bin/lighttpdview
3. 殺掉該進程vi
[plain] view plaincopy kill -9 <pid>