例如: netstat -anp | grep 1160
ps:查看端口1169被那个进程占用。
例如 :ps -ef | grep ‘tomcat‘
ps:查找出进程名里含有 tomcat的进程
一般终止进程的方法是如:
kill 8080
ps:终止进程号为8080的进程
如果上面的命令终止不了进程可以使用 killall命令进程终止
如:killall -KILL 8080
ps:强制终止进程号为8080的进程
原文地址:http://blog.csdn.net/luxideyao/article/details/37777639