程序部署在weblogic下面
通过cmd
1、Windows平台
在windows命令行窗口下执行:
C:\>netstat -aon|findstr "1521"
--查看端口1521都没那些进程连接
TCP 127.0.0.1:9050 0.0.0.0:0 LISTENING 2016
看到了吗,端口被进程号为2016的进程占用,继续执行下面命令:
--查看该进程背后的应用
C:\>tasklist|findstr "2016"
tomcat6.exe 2016 Console 0 16,064 K
很清楚吧,tomcat6.exe占用了你的端口 停掉该服务系统恢复正常!
telnet ip 端口 ping地址+端口是否通
转载于:https://www.cnblogs.com/kaka-bing/archive/2013/03/01/2939376.html