Linux停止tomcat进程
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进程
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停止tomcat8080端口进程
本文链接:https://www.haomeiwen.com/subject/xafrpftx.html
网友评论