RE: Change to Port 80

2004-07-02 Thread Yanbin Ma
Did you run tomcat from root? I am running AIX, I remember somewhere it
says you must be root in order to start a program using port 80.

Hope it helps.

Yanbin

-Original Message-
From: Steve Beaman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 01, 2004 6:01 PM
To: Tomcat Users List
Subject: Re: Change to Port 80

I'm also on Linux,
and when I tried to
mod 8080 to 80 via vi, 
it crashed the server at startup.

I finally gave up, made the mods 
on a Windows box, copied to Linux,
and it all worked.

Beats me.

- Original Message - 
From: Ryan McCain [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 01, 2004 1:50 PM
Subject: Change to Port 80


 
 How do I configure Tomcat to run on port 80 as opposed to 8080? I
 changed a few parameters in the xml config file, but nothing seemed to
 have took.
 OS=SUSE Linux
 Tomcat=4.x
 
 Thanks,
 Ryan
 
 -
 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]




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



Re: Change to Port 80

2004-07-02 Thread Mark Lowe
was apache already running on linux by any remote chance?
did the log say that 80 was already in use?
On 2 Jul 2004, at 00:01, Steve Beaman wrote:
I'm also on Linux,
and when I tried to
mod 8080 to 80 via vi,
it crashed the server at startup.
I finally gave up, made the mods
on a Windows box, copied to Linux,
and it all worked.
Beats me.
- Original Message -
From: Ryan McCain [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 01, 2004 1:50 PM
Subject: Change to Port 80

How do I configure Tomcat to run on port 80 as opposed to 8080? I
changed a few parameters in the xml config file, but nothing seemed to
have took.
OS=SUSE Linux
Tomcat=4.x
Thanks,
Ryan
-
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]

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


Re: Change to Port 80

2004-07-01 Thread Hassan Schroeder
Ryan McCain wrote:
How do I configure Tomcat to run on port 80 as opposed to 8080? I
changed a few parameters in the xml config file, but nothing seemed to
have took.
The Connector element contains a port attribute. Shouldn't be
hard to grep '8080' in server.xml and change it :-)
--
Hassan Schroeder - [EMAIL PROTECTED]
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com
  dream.  code.

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


Re: Change to Port 80

2004-07-01 Thread Ryan McCain
Thanks for the response. Thats what I thought it was, and when I changed
it previously, my browser just hangs and says Waiting for
connection Any ideas?

Thanks, Ryan

 [EMAIL PROTECTED] 7/1/2004 3:56:49 PM 
Ryan McCain wrote:

 How do I configure Tomcat to run on port 80 as opposed to 8080? I
 changed a few parameters in the xml config file, but nothing seemed
to
 have took.

The Connector element contains a port attribute. Shouldn't be
hard to grep '8080' in server.xml and change it :-)

-- 
Hassan Schroeder - [EMAIL PROTECTED] 
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com 

   dream.  code.



-
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]



Re: Change to Port 80

2004-07-01 Thread QM
On Thu, Jul 01, 2004 at 03:50:49PM -0500, Ryan McCain wrote:
: How do I configure Tomcat to run on port 80 as opposed to 8080?

This has been discussed at length (some would say, ad nauseam) in the
archives.  

There are several ways to do it, based on your needs and preferences.

-QM

-- 

software  -- http://www.brandxdev.net
tech news -- http://www.RoarNetworX.com


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



RE: Change to Port 80

2004-07-01 Thread Patrick Glennon
Agreed.  Go look at the docs.  But just to get you started, if you are
running tomcat as a non-root user, you CANNOT bind to port 80 unless you use
something like JSVC ( go look that one up too ;) to launch it.

-P
-Original Message-
From: QM [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 01, 2004 4:13 PM
To: Tomcat Users List
Subject: Re: Change to Port 80

On Thu, Jul 01, 2004 at 03:50:49PM -0500, Ryan McCain wrote:
: How do I configure Tomcat to run on port 80 as opposed to 8080?

This has been discussed at length (some would say, ad nauseam) in the
archives.  

There are several ways to do it, based on your needs and preferences.

-QM

-- 

software  -- http://www.brandxdev.net
tech news -- http://www.RoarNetworX.com


-
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]



Re: Change to Port 80

2004-07-01 Thread Hassan Schroeder
Ryan McCain wrote:
Thanks for the response. Thats what I thought it was, and when I changed
it previously, my browser just hangs and says Waiting for
connection Any ideas?
Use `$CATALINA_HOME/bin/catalina.{sh,bat} run` to start up and
watch the console; one of the first few messages should be like
2004-06-30 15:58:10.631 INFO  org.apache.coyote.http11.Http11Protocol -
Initializing Coyote HTTP/1.1 on port 80
If not, well, depends on what *does* scroll by...  :-)
--
Hassan Schroeder - [EMAIL PROTECTED]
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com
  dream.  code.

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


Re: Change to Port 80

2004-07-01 Thread Steve Beaman
I'm also on Linux,
and when I tried to
mod 8080 to 80 via vi, 
it crashed the server at startup.

I finally gave up, made the mods 
on a Windows box, copied to Linux,
and it all worked.

Beats me.

- Original Message - 
From: Ryan McCain [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 01, 2004 1:50 PM
Subject: Change to Port 80


 
 How do I configure Tomcat to run on port 80 as opposed to 8080? I
 changed a few parameters in the xml config file, but nothing seemed to
 have took.
 OS=SUSE Linux
 Tomcat=4.x
 
 Thanks,
 Ryan
 
 -
 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]