• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Weblogic Port 7001 initialization error

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Need help Urgently
I am trying to get the weblogic server started, but for some reason or another i seem to get the folllowing errors as listed below
Mon Jan 06 09:46:31 PST 2003:<!> <ListenThread> **** Unable to create server socket. Perhaps another process is using port: '7001'.
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:447)
at java.net.ServerSocket.<init>(ServerSocket.java:165)
at java.net.ServerSocket.<init>(ServerSocket.java:116)
at weblogic.t3.srvr.ListenThread.newServerSocket(ListenThread.java:223)
at weblogic.t3.srvr.ListenThread.run(ListenThread.java:254)
Mon Jan 06 09:46:31 PST 2003:<!> <SSLListenThread> **** Unable to create server socket. Perhaps another process is using port: '7002'.
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:447)
at java.net.ServerSocket.<init>(ServerSocket.java:165)
at java.net.ServerSocket.<init>(ServerSocket.java:116)
at weblogic.security.SSL.SSLServerSocket.<init>(SSLServerSocket.java:96)
at weblogic.security.SSL.SSLServerSocket.<init>(SSLServerSocket.java:56)
at weblogic.t3.srvr.SSLListenThread.newServerSocket(SSLListenThread.java:472)
at weblogic.t3.srvr.ListenThread.run(ListenThread.java:254)
Would anyone out there be able to help me with this problem? I would really appreciate the help.
Thank you
Jacksy
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It appears as if you have another service running on port 7001. Are you running any other instances of WebLogic? Any other services that might use 7001?
If you can't figure it out then you could always change the port the WebLogic listens to by editing the config.xml file. You will need to edit/add the ListenPort attribute of the Server element. More more detail check this link: WebLogic Config.xml Server Element.
 
Chris Mathews
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ditto for the SSL Port on 7002.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
why dont you check your ports are being used using "netstat" in windows
 
Humans and their filthy friendship brings nothing but trouble. My only solace is this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic