I've tried doing a netstat and the port says it's listening. Looking at the websphere config files, I couldn't find anything else using this port. There are no other application servers or non-websphere-related apps using this port. I've highlighted the problem below in the log. Any help would be appreciated.

update: To resolve the issue, we tried moving the port several times by at least a thousand ports. We've edited the serverindex.xml and everything looks fine. this isn't a DNS problem either, as the hostname resolves OK from the system.

This is websphere 6.1 express running on an as400.

[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>
link|improve this question
Have you gone throught this process: Call netstat, then option 3 to view opened ports, option 8 for the job using the port? – svachon Jun 21 '11 at 12:46
feedback

2 Answers

Probably the WebSphere listener process is still active from a previous startup. List the java processes using ps (UNIX) or task manager (Win) and kill the one that looks like a WebSphere process. There are also tools for different flavours of UNIX (lsof) and Windows (SysInternals TcpView) that can find the process keeping a TCP port open.

link|improve this answer
Or just restart you computer and then try to start the server again. – AlexR Jun 21 '11 at 8:03
We've tried restarting the entire subsystem, with no luck. This would have eliminated any previous websphere listener processes. – Stephen Jun 21 '11 at 8:03
feedback

Thanks to everyone who contributed to solve the problem. We fixed it by setting the port to 0 for the bootstrap server (which lets WAS choose the port).

link|improve this answer
nevermind...it didn't fix it – Stephen Jun 21 '11 at 14:18
Were you able to find the job that is using the port? – svachon Jun 21 '11 at 14:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.