Linux下查看程序端口占用情况
?方法一:?ps -aux | grep "程序名称"例如:查看Tomcat进程:ps -aux | grep tomcat?方法二:netstat -anp |grep tomcat??方法三:netst使用命at -anp查看所有的进程和端口使用情况。