Address already in use:JVM_BIND:8080

2004-11-04 Thread Harry Douglass, Jr.
When I try running Tomcat from the DOS prompt by typing 'tomcat start', I
see the SEVERE Error message: Address already in use:JVM_BIND:8080.  I know
I am running IIS on port 80, but I want to keep the same port it runs on,
and manually start Tomcat when I need it.

Why can't I get it to work?

Thank you very much in advance,
Harry





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Address already in use:JVM_BIND:8080

2004-11-04 Thread Allistair Crossley
this means you are running other software on Tomcat's default port 8080. This may 
either be another tomcat? or some other process. 

Load a command prompt and type

netstat -an

this will show you if anything is listening on 8080. There is also a tool 
http://www.sysinternals.com/ntw2k/freeware/procexp.shtml

that may help you find out what is listening on port 8080. it will not be IIS unless 
you have setup another site with 8080.

If after all this you cannot find out what is binding 8080, edit server.xml in 
tomcat/conf and change 8080 to 9090.

Allistair.

 -Original Message-
 From: Harry Douglass, Jr. [mailto:[EMAIL PROTECTED]
 Sent: 04 November 2004 12:42
 To: 'Tomcat Users List'
 Subject: Address already in use:JVM_BIND:8080
 
 
 When I try running Tomcat from the DOS prompt by typing 
 'tomcat start', I
 see the SEVERE Error message: Address already in 
 use:JVM_BIND:8080.  I know
 I am running IIS on port 80, but I want to keep the same port 
 it runs on,
 and manually start Tomcat when I need it.
 
 Why can't I get it to work?
 
 Thank you very much in advance,
 Harry
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE 
---
QAS Ltd.
Developers of QuickAddress Software
a href=http://www.qas.com;www.qas.com/a
Registered in England: No 2582055
Registered in Australia: No 082 851 474
---
/FONT


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Address already in use:JVM_BIND:8080

2004-11-04 Thread Steve Kirk
the address already in use error indicates that the port is already in use
by another service (probably IIS from what you've said).  you can't have two
services on the same port.  stop IIS and check that IIS does not still have
hold of port 8080.  use netstat -a at the dos prompt to check.

 -Original Message-
 From: Harry Douglass, Jr. [mailto:[EMAIL PROTECTED] 
 Sent: Thursday 04 November 2004 02:04
 To: [EMAIL PROTECTED]
 Subject: Address already in use:JVM_BIND:8080
 
 
 Hello, 
 
 I am trying to install Apache Tomcat to run JSP and servlets 
 for the first
 time.  When I type in this URL 'http://localhost:8080/' 
 Windows XP prompts
 me for a username and password.  I typed in both the username 
 'admin' and
 blank password and a custom username and password when I 
 installed it and I
 get an Unauthorized web page returned.
 
 When I try running Tomcat from the DOS prompt by typing 
 'tomcat start', I
 see the SEVERE Error message: Address already in 
 use:JVM_BIND:8080.  I know
 I am running IIS, but I want to keep the same port it runs 
 on, and manually
 start Tomcat when I need it.
 
 Why can't I get it to work?
 
 Thank you very much in advance,
 
 Harry



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Address already in use:JVM_BIND:8080

2004-11-04 Thread Ravi Mutyala
Harry Douglass, Jr. wrote:
Hello, 
I am trying to install Apache Tomcat to run JSP and servlets for the first
time.  When I type in this URL 'http://localhost:8080/' Windows XP prompts
me for a username and password.  I typed in both the username 'admin' and
blank password and a custom username and password when I installed it and I
get an Unauthorized web page returned.
When I try running Tomcat from the DOS prompt by typing 'tomcat start', I
see the SEVERE Error message: Address already in use:JVM_BIND:8080.  I know
I am running IIS, but I want to keep the same port it runs on, and manually
start Tomcat when I need it.
Harry
There is some other service that is binding to 8080. You can either 
identify and stop this service(netstat -a might help).. are change the 
port of the Tomcat that you are using. port can be changed in server.xml 
in the conf folder. server.xml will have configuration similar to the 
folloing.. the port in the below configuration can be changed to some 
unused port.

 Service name=Tomcat-Standalone
	Connector className=org.apache.coyote.tomcat4.CoyoteConnector
port=8080   minProcessors=5 maxProcessors=75
   enableLookups=true redirectPort=8443
   acceptCount=100 debug=0 connectionTimeout=2
   useURIValidationHack=false 
disableUploadTimeout=true 		/
	..
	..
	..
	..

/
Ravi.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Address already in use:JVM_BIND:8080

2004-11-04 Thread Jukka Uusisalo
Harry Douglass, Jr. wrote:
Hello, 

I am trying to install Apache Tomcat to run JSP and servlets for the first
time.  When I type in this URL 'http://localhost:8080/' Windows XP prompts
me for a username and password.  I typed in both the username 'admin' and
blank password and a custom username and password when I installed it and I
get an Unauthorized web page returned.
When I try running Tomcat from the DOS prompt by typing 'tomcat start', I
see the SEVERE Error message: Address already in use:JVM_BIND:8080.  I know
I am running IIS, but I want to keep the same port it runs on, and manually
start Tomcat when I need it.
Why can't I get it to work?
Hi,
You have another application running and listening port 8080.
Few days ago I resolved same kind of situation and another application
was Oracle and Oracles XML DB and tomcat installed same windows box.
Configration of Oracle XML DB is in DB, so it was easier to just change
Tomcat port.
- Jukka -
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Address already in use:JVM_BIND:8080

2004-11-04 Thread Harry Douglass, Jr.
Thanks, Allistair, you suggestion worked.  Port 8080 was being used by
Oracle and switching to 9090 was the solution.


-Original Message-
From: Allistair Crossley [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 04, 2004 7:46 AM
To: Tomcat Users List
Subject: RE: Address already in use:JVM_BIND:8080

this means you are running other software on Tomcat's default port 8080.
This may either be another tomcat? or some other process. 

Load a command prompt and type

netstat -an

this will show you if anything is listening on 8080. There is also a tool 
http://www.sysinternals.com/ntw2k/freeware/procexp.shtml

that may help you find out what is listening on port 8080. it will not be
IIS unless you have setup another site with 8080.

If after all this you cannot find out what is binding 8080, edit server.xml
in tomcat/conf and change 8080 to 9090.

Allistair.

 -Original Message-
 From: Harry Douglass, Jr. [mailto:[EMAIL PROTECTED]
 Sent: 04 November 2004 12:42
 To: 'Tomcat Users List'
 Subject: Address already in use:JVM_BIND:8080
 
 
 When I try running Tomcat from the DOS prompt by typing 
 'tomcat start', I
 see the SEVERE Error message: Address already in 
 use:JVM_BIND:8080.  I know
 I am running IIS on port 80, but I want to keep the same port 
 it runs on,
 and manually start Tomcat when I need it.
 
 Why can't I get it to work?
 
 Thank you very much in advance,
 Harry
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE 
---
QAS Ltd.
Developers of QuickAddress Software
a href=http://www.qas.com;www.qas.com/a
Registered in England: No 2582055
Registered in Australia: No 082 851 474
---
/FONT


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Address already in use:JVM_BIND:8080

2004-11-03 Thread Harry Douglass, Jr.
Hello, 

 

 

 

I am trying to install Apache Tomcat to run JSP and servlets for the first
time.  When I type in this URL 'http://localhost:8080/' Windows XP prompts
me for a username and password.  I typed in both the username 'admin' and
blank password and a custom username and password when I installed it and I
get an Unauthorized web page returned.

 

 

 

When I try running Tomcat from the DOS prompt by typing 'tomcat start', I
see the SEVERE Error message: Address already in use:JVM_BIND:8080.  I know
I am running IIS, but I want to keep the same port it runs on, and manually
start Tomcat when I need it.

 

 

 

Why can't I get it to work?

 

 

 

Thank you very much in advance,

 

 

Harry

 

 



Re: Address already in use:JVM_BIND:8080

2004-11-03 Thread Rhino
Go into your tomcat-users.xml file in the conf directory. Create an entry
that looks like this:

user username=myid password=mypass roles=tomcat,standard,manager/

That should get you into Tomcat okay via the sign-in screen.

Rhino




- Original Message - 
From: Harry Douglass, Jr. [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 03, 2004 9:03 PM
Subject: Address already in use:JVM_BIND:8080


 Hello,







 I am trying to install Apache Tomcat to run JSP and servlets for the first
 time.  When I type in this URL 'http://localhost:8080/' Windows XP prompts
 me for a username and password.  I typed in both the username 'admin' and
 blank password and a custom username and password when I installed it and
I
 get an Unauthorized web page returned.







 When I try running Tomcat from the DOS prompt by typing 'tomcat start', I
 see the SEVERE Error message: Address already in use:JVM_BIND:8080.  I
know
 I am running IIS, but I want to keep the same port it runs on, and
manually
 start Tomcat when I need it.







 Why can't I get it to work?







 Thank you very much in advance,





 Harry








-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]