Re: how to start tomcat on port 80 w/o being root?

2000-10-25 Thread Paul Russell
On Wed, Oct 25, 2000 at 04:47:22PM -0400, Jan Labanowski wrote: > I am afraid, you are out of luck... But I hope someone will say I am wrong... Bzzzt. Sadly, you're completely right. Java has no knowladge of the UNIX security architecture. > But of course, you can always start Apache as root to

Re: how to start tomcat on port 80 w/o being root?

2000-10-25 Thread Jan Labanowski
I am afraid, you are out of luck... But I hope someone will say I am wrong... The apache has a "parent" process which runs as root, and spawns children processes as "nobodies" (or whatever). Tomcat is running a single process, does not spawn children, and from the beginning to the end is the same

RE: how to start tomcat on port 80 w/o being root?

2000-10-25 Thread Dan Byrne
I have used a program called sudo which accesses root permission to startup such services Dan -Original Message- From: tlittle [mailto:tlittle]On Behalf Of Trevor Little Sent: Wednesday, October 25, 2000 5:43 PM To: [EMAIL PROTECTED] Subject: how to start tomcat on port 80 w/o being

how to start tomcat on port 80 w/o being root?

2000-10-25 Thread Trevor Little
I want to create a tomcat user and start tomcat on port 80 under linux. I know only root can use ports below 1024. However, apache can run as someone other than root and still use port 80. I want to do something similar. I know to change the ports settings on server.xml. Thanks