linux 使用命令关闭tomcat 的8080端口

来源:互联网 发布:iwatch软件更新 编辑:程序博客网 时间:2024/06/05 16:57

linux 使用命令关闭tomcat 的8080端口

命令如下:

lsof -i :8080|grep -v "PID"|awk '{print "kill -9",$2}'|sh