Link to home
Start Free TrialLog in
Avatar of Adrian
AdrianFlag for United States of America

asked on

WebSphere 6.1

Hi ,
I am working on WebSphere6.1

When i started the server i am getting the belowCaused by: com.ibm.ws.exception.RuntimeError: Unable to initialize the Name Service
        at com.ibm.ws.naming.bootstrap.NameServerImpl.start(NameServerImpl.java:476)
        at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:977)
        at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:673)
        at com.ibm.ws.runtime.component.ServerImpl.start(ServerImpl.java:526)
        at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:192)
        ... 24 more
Caused by: com.ibm.ws.naming.distcos.NameSpaceConstructionException: Unable to start bootstrap server using port 2814. Verify that no servers or other processes are already using the bootstrap server port. Also verify that the bootstrap server is being started with a user ID which has sufficient (e.g., root, Administrator) privileges.
        at com.ibm.ws.naming.bootstrap.NameServerImpl.startBootstrapService(NameServerImpl.java:771)
        at com.ibm.ws.naming.bootstrap.NameServerImpl.start(NameServerImpl.java:471)
        ... 28 more
Caused by: org.omg.CORBA.INTERNAL: CREATE_LISTENER_FAILED_4  vmcid: 0x49421000  minor code: 56  completed: No
        at com.ibm.ws.orbimpl.transport.WSTransport.createListener(WSTransport.java:859)
        at com.ibm.ws.orbimpl.transport.WSTransport.createListener(WSTransport.java:629)
        at com.ibm.rmi.iiop.TransportManager.createListener(TransportManager.java:174)
        at com.ibm.rmi.iiop.ORB.createListener(ORB.java:901)
        at com.ibm.CORBA.iiop.ORB.createListener(ORB.java:3318)
        at com.ibm.rmi.iiop.BootstrapServer.<init>(BootstrapServer.java:113)
        at com.ibm.rmi.iiop.ORB.createBootstrapServer(ORB.java:910)
        at com.ibm.CORBA.iiop.ORB.createBootstrapServer(ORB.java:3370)
        at com.ibm.ws.naming.bootstrap.NameServerImpl.createBootstrapServer(NameServerImpl.java:825)
        at com.ibm.ws.naming.bootstrap.NameServerImpl.startBootstrapService(NameServerImpl.java:764)
 exception

Can you plz help on this.

Thanks a lot.


Avatar of sompol_kiatkamolchai
sompol_kiatkamolchai
Flag of Thailand image

Hi,

The port number 2814 is already opened and your server want to use for boot strap at the same port number.

You can check whethere this port already in-use before starting websphere by using this command-line

c:\>netstat -na|findstr 2814

If it already open, the status may be ESTABLISHED, or LISTENING.

To solve this problem, you need to check other websphere profile or other application going to using this port and then try manage port number without conflict.

Hope this help,
Sompol
netstat -an | grep 2814
Avatar of Adrian

ASKER

Hi
How do u know other profiles using same port?

Thanks
Login to administrative console. Maybe at url like this.

http://ip:port/ibm/console

There will be server menu on the left side, after click it. Please search for Port section. It will summarize all the ports used by websphere.

Actually, it is easier to check it by netstat -na|grep 2814 before running your server.

Hope this help,
Sompol
Avatar of Adrian

ASKER

Hi

Do i need to change the BootStrap Port on each JVM?

THanks
ASKER CERTIFIED SOLUTION
Avatar of sompol_kiatkamolchai
sompol_kiatkamolchai
Flag of Thailand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Adrian

ASKER

Ok.
Thank you.
I think my suggestion help the author solved the problem.