excuse me I say wrong.. I want to say
When I try to start Jboss Eclipse say me with an error window:
Server port In Use 8080-Http
sickness wrote (not quite in this order):
> I'm using Eclipse 3.1.2 and jboss 4.0.3SP1.
> Eclipse crashed.. and now Jboss doesn't start!
> When I try to start Jboss Eclipse say me with an error window:
>
> Server port In Use 8080-Http
> I try to:
> -restart eclipse
> -restart the pc
> -reinstall Jboss
> -reinstall Eclipse
> -modify the server port
> excuse me I say wrong.. I want to say
Is it possible there really is a process listening on 8080, and getting
restarted every time you boot the PC? What operating system are you
using? If you are on Windows, you might try something like:
netstat | find "8080"
sickness - 18 May 2006 08:32 GMT
hello thx a lot for the response
yes I'm using WinXp
netstat -an
gives me this in the screenshot
http://i4.tinypic.com/zyinm0.gif
I can see
0.0.0.0:8080 .. LISTENING
This means that this port is already open.. I think. . but I don't have
any program/process started that use this port..
Any suggestion?
Thx to all
=)
Gordon Beaton - 18 May 2006 08:57 GMT
> yes I'm using WinXp
> netstat -an
[quoted text clipped - 7 lines]
> This means that this port is already open.. I think. . but I don't have
> any program/process started that use this port..
It means that a process most definitely has opened the port and is
waiting for incoming connections there.
If you don't know what that program might be, I'd suggest finding out
so you can stop it. A tool "lsof" (which may not support Windows, I
don't know) can tell you which process has the port open.
Or try connecting to it with "telnet localhost 8080" or a webbrowser
(http://localhost:8080/) to see if that gives you any clues.
(Perhaps it's not significant, but it's apparent from the screenshot
that you also have processes with connections to port 8080 on another
machine in your network).
/gordon

Signature
[ do not email me copies of your followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e
Philip Reimer - 18 May 2006 09:05 GMT
sickness schrieb:
> hello thx a lot for the response
> yes I'm using WinXp
[quoted text clipped - 9 lines]
> any program/process started that use this port..
> Any suggestion?
Use netstat's '-b' parameter to see, which executable opened / is
listening on the port.
> Thx to all
> =)
HTH
sickness - 19 May 2006 11:22 GMT