1

我试过做一个 netstat 并且端口说它正在监听。查看 websphere 配置文件,我找不到使用此端口的任何其他内容。没有其他应用程序服务器或非 websphere 相关的应用程序使用此端口。我在日志中突出显示了以下问题。任何帮助,将不胜感激。

更新:为了解决这个问题,我们多次尝试将端口移动至少一千个端口。我们已经编辑了 serverindex.xml,一切看起来都很好。这也不是 DNS 问题,因为主机名可以从系统解析。

这是在 as400 上运行的 websphere 6.1 express。

[6/21/11 10:08:25:199 EEST] 0000000a ThreadPoolMgr W   WSVR0626W: The ThreadPool setting on the ObjectRequestBroker service is deprecated.<br>
[6/21/11 10:08:25:264 EEST] 0000000a SSLComponentI I   CWPKI0003I: SSL service is starting<br> 
[6/21/11 10:08:25:281 EEST] 0000000a SSLComponentI I   CWPKI0004I: SSL service started successfully<br>
[6/21/11 10:08:27:944 EEST] 0000000a CoordinatorIm I   HMGR0206I: The Coordinator is an Active Coordinator for core group DefaultCoreGroup. The active coordinator set is [TEST595_ITMUIAppS\TEST595_ITMUIAppS\ITMUIAppS].<br>
[6/21/11 10:08:28:130 EEST] 0000000a DCSPluginSing I   HMGR0005I: The Single Server DCS Core Stack transport has been started for core group DefaultCoreGroup.<br>
[6/21/11 10:08:28:465 EEST] 0000000a ServiceLogger I com.ibm.ws.ffdc.IncidentStreamImpl initialize FFDC0009I: FFDC opened incident stream file /QIBM/UserData/WebSphere/AppServer/V61/Express/profiles/ITMUIAppS/logs/ffdc/ITMUIAppS_0000000a_11.06.21_10.08.28_0.txt<br>
[6/21/11 10:08:28:573 EEST] 0000000a ServiceLogger I com.ibm.ws.ffdc.IncidentStreamImpl resetIncidentStream FFDC0010I: FFDC closed incident stream file /QIBM/UserData/WebSphere/AppServer/V61/Express/profiles/ITMUIAppS/logs/ffdc/ITMUIAppS_0000000a_11.06.21_10.08.28_0.txt<br>
[6/21/11 10:08:28:592 EEST] 0000000a ORBRas        E **com.ibm.ws.orbimpl.transport.WSTransport createServerSocket Thread-0 ORBX0390E: Cannot create listener thread. Exception=[ java.net.BindException: Address already in use. - received while attempting to open server socket on port 10038 ].**<br>
[6/21/11 10:08:28:653 EEST] 0000000a ServiceLogger I com.ibm.ws.ffdc.IncidentStreamImpl open FFDC0009I: FFDC opened incident stream file /QIBM/UserData/WebSphere/AppServer/V61/Express/profiles/ITMUIAppS/logs/ffdc/ITMUIAppS_0000000a_11.06.21_10.08.28_1.txt<br>
[6/21/11 10:08:28:720 EEST] 0000000a ServiceLogger I com.ibm.ws.ffdc.IncidentStreamImpl resetIncidentStream FFDC0010I: FFDC closed incident stream file /QIBM/UserData/WebSphere/AppServer/V61/Express/profiles/ITMUIAppS/logs/ffdc/ITMUIAppS_0000000a_11.06.21_10.08.28_1.txt<br>
[6/21/11 10:08:28:789 EEST] 0000000a ServiceLogger I com.ibm.ws.ffdc.IncidentStreamImpl open FFDC0009I: FFDC opened incident stream file /QIBM/UserData/WebSphere/AppServer/V61/Express/profiles/ITMUIAppS/logs/ffdc/ITMUIAppS_0000000a_11.06.21_10.08.28_2.txt<br>
4

3 回答 3

1

可能 WebSphere 侦听器进程在上一次启动时仍然处于活动状态。使用 ps (UNIX) 或任务管理器 (Win) 列出 java 进程并杀死看起来像 WebSphere 进程的进程。还有用于不同风格的 UNIX (lsof) 和 Windows (SysInternals TcpView) 的工具,可以找到保持 TCP 端口打开的进程。

于 2011-06-21T07:48:20.800 回答
0

感谢所有为解决问题做出贡献的人。我们通过将引导服务器的端口设置为 0 来修复它(让 WAS 选择端口)。

于 2011-06-21T13:30:43.083 回答
0

等一下,您确定这是您服务器上的端口冲突,并且这不是客户端到服务器的连接问题吗?防火墙?

看起来您也在注册 SSL - 您的应用程序可能无法尝试将端口绑定到 SSL 证书。看看这个: http: //msdn.microsoft.com/en-us/library/ms733791 (v=vs.110).aspx

在我的 Web 应用程序无法启动之前,我遇到了类似的问题,因为它直接进入下面的第 3 步(尝试在删除现有的第一个之前添加绑定)第 1 步。检查现有的绑定

netsh http show sslcert

STEP 2.在添加之前删除绑定

Netsh http delete sslcert ipport=0.0.0.0:8005

STEP 3.添加绑定

netsh http add sslcert ipport=0.0.0.0:8000 certhash=0000000000003ed9cd0c315bbb6dc1c08da5e6 appid={00112233-4455-6677-8899-AABBCCDDEEFF} 
于 2014-01-07T00:33:13.680 回答