Linux停止tomcat進(jìn)程
ps -ef|grep tomcat
或者使用fuser命令
fuser -v -n tcp 8080
或者
netstat -tunlp|grep 8080
-v verbose output
-n search in this name space (file, udp, or tcp)
kill -9 PID
Linux停止tomcat進(jìn)程
ps -ef|grep tomcat
或者使用fuser命令
fuser -v -n tcp 8080
或者
netstat -tunlp|grep 8080
-v verbose output
-n search in this name space (file, udp, or tcp)
kill -9 PID