查看端口的运行情况
查看8080端口的运行情况lsof -i :8080 干掉8080端口的相关进程lsof -i :80|grep -v "PID"|awk '{print "kill -9",$2}'查看某端口的运行情况。netstat -apn | grep 8080
?