• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Server port no 9080 is in use in WSAD 5.0

 
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi friends,
I am using the WSAD5.0 server, I got the following error when starting the server. Lunching error, server port no 9080 is in use. Some one please help me.
Thanks,
Bhargavi.
 
Ranch Hand
Posts: 330
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
WSAD == WebSphere Application Developer?

This means that there's already a program using that port number (either you're running multiple wsad local test environment servers each having port 9080 or you have another program using that port number like jboss, tomcat, etc). In either case, change the port number of the server you're trying to start up. In your WSAD IDE, double click on the server and you'll see a window with server configuration...find the one that pertains to port...very easy to locate (find the field that has a value 9080) and change the value to 9081 or whatever port number not yet allocated.

hope this helps.
[ August 17, 2007: Message edited by: dennis zined ]
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
For the clue to find out who is using this port, try this command
C:\>netstat -a -b -v

This will show you which application is using these ports. It is like
TCP FLL000033489:9080 FLL000033489.nac.ad.aexp.com:0 LISTENING 952
[javaw.exe]

Kill or stop this programme. In my case it was javaw.exe.
This will resolve the problem.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Worked for me! Thanks.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic