RE: running tomcat on port 80

2005-06-21 Thread Mandar Vaidya
Permission denied means you are running it with non-root user. Normal user can not bind to port 80. Thanks, Mandar -Original Message- From: Tony Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 12:47 PM To: tomcat-user@jakarta.apache.org Subject: running tomcat on port 80

Re: running tomcat on port 80

2005-06-21 Thread Anoop kumar V
rt tomcat > > -Original Message- > From: Tony Smith [mailto:[EMAIL PROTECTED] > Sent: 21 June 2005 17:47 > To: tomcat-user@jakarta.apache.org > Subject: running tomcat on port 80 > > > Hi, Can I run Tomcat 5.0 on port 80? I do not want my > visitor have to type the port

RE: running tomcat on port 80

2005-06-21 Thread Fredrik Liden
Shouldn't be any problems. Are you sure there are not other programs bound to 80? Try netstat -a in the dos window. -Original Message- From: Tony Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 9:47 AM To: tomcat-user@jakarta.apache.org Subject: running tomcat on po

RE: running tomcat on port 80

2005-06-21 Thread Raghupathy,Gurumoorthy
Is it unix / linux box ? Then yo need to be root when you start tomcat -Original Message- From: Tony Smith [mailto:[EMAIL PROTECTED] Sent: 21 June 2005 17:47 To: tomcat-user@jakarta.apache.org Subject: running tomcat on port 80 Hi, Can I run Tomcat 5.0 on port 80? I do not want my

running tomcat on port 80

2005-06-21 Thread Tony Smith
Hi, Can I run Tomcat 5.0 on port 80? I do not want my visitor have to type the port number. After setting 80 as port number in the server.xml and starting tomcat, I got the following error message: SEVERE: Error starting endpoint java.net.BindException:permission denied:80 Thanks,

Re: running tomcat on port 80 instead of port 8080

2003-07-03 Thread Georges Roux
On Linux to run Tomcat Standalone on port 80, without using ROOT permissions(simple user) U can use iptables to redirect 8080 to 80 and 8443 to 443. without iptables, apache can do the job as necessary, but iptables is very simple. Georges Tom Parker a écrit : On Fri, 2003-07-04 at 13:16, Nei

Re: running tomcat on port 80 instead of port 8080

2003-07-03 Thread Tom Parker
On Fri, 2003-07-04 at 13:16, Neil Zanella wrote: > Sorry if this is a FAQ but how can I run Jakarta Tomcat on port 80 rather > than on port 8080? I guess all I have to do is change > $CATALINA_HOME/conf/server.xml so that instead of: ... Yes, that should work. However if you are running on lin

Re: running tomcat on port 80 instead of port 8080

2003-07-03 Thread Tim Funk
Try it and see what happens. (meaning yes, that should work) -Tim Neil Zanella wrote: Hello, Sorry if this is a FAQ but how can I run Jakarta Tomcat on port 80 rather than on port 8080? I guess all I have to do is change $CATALINA_HOME/conf/server.xml so that instead of: the followi

running tomcat on port 80 instead of port 8080

2003-07-03 Thread Neil Zanella
Hello, Sorry if this is a FAQ but how can I run Jakarta Tomcat on port 80 rather than on port 8080? I guess all I have to do is change $CATALINA_HOME/conf/server.xml so that instead of:

RE: Running Tomcat on port 80

2003-06-12 Thread taf
Actually, I'm such a newbie that I'm perfectly willing to give Tomcat exclusive access to port 80 -- at the moment, I rather not incur the additional learning curve required to get Apache running, still less getting Apache to frontend for Tomcat. I grant you that I'll probably want to use Apache

RE: Running Tomcat on port 80

2003-06-12 Thread Goehring, Chuck Mr., RCI - San Diego
Terry, Tomcat would need exclusive use of the port. You probably have Apache or some other web server already listening on that port. You will have to move it to another if you want to run Tomcat on 80. The other option is to have Apache act as the front-end to Tomcat using a connector such

running Tomcat on port 80 as non root

2002-06-06 Thread @Basebeans.com
Subject: running Tomcat on port 80 as non root From: "Aymeric Alibert" <[EMAIL PROTECTED]> === I am trying to find a workaround to the fact that Tomcat cannot run as non-root on port 80 on UNIX. It seems that our firewall can redirect the request from port 80 to port 8080. This

Re: Running Tomcat on port 80 under non root?

2001-03-19 Thread C.M. Rahman (jr.)
ternet 13740 Research Blvd. Suite O-4 Austin, TX 78758 [EMAIL PROTECTED] - Original Message - From: David Crooke <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 19, 2001 10:47 PM Subject: Re: Running Tomcat on port 80 under non root? > For any serious applica

Re: Running Tomcat on port 80 under non root?

2001-03-19 Thread David Crooke
For any serious application, you should use Apache in front of Tomcat, and it has this capability built in. Alec Bau wrote: > On Solaris 2.7 we need Tomcat process to use port 80 but to run under id other > than root. Is there a trick or conf option to do this, i.e. grab port 80 under > root and

Running Tomcat on port 80 under non root?

2001-03-19 Thread Alec Bau
On Solaris 2.7 we need Tomcat process to use port 80 but to run under id other than root. Is there a trick or conf option to do this, i.e. grab port 80 under root and then set user id to something else? Or the only way is to modify source and to call setuid via JNI after socket is bound? Thanks,