Re: running tomcat on port 80[Scanned]

2005-06-24 Thread Daniel Henrique Ferreira e Silva
, 2005 2:30 PM To: Struts Users Mailing List Subject: Re: running tomcat on port 80[Scanned] and yes I agree with Mark please read the FINE Manual Martin- - Original Message - From: Mark Galbreath [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Thursday

Re: running tomcat on port 80[Scanned]

2005-06-23 Thread Tony Smith
Thank all for response. I loged on as root and changed server.xml to use port 80. When I start tomcat, it now compained that 80 is already in use. But I can not find out who is using it. I ran netstat -a, but I did not see anything like 80. Should I look at something else? I also tried telnet

Re: running tomcat on port 80[Scanned]

2005-06-23 Thread Tony Smith
Or, can I move my tomcat under apache so now port number is necessary in the address? --- Tony Smith [EMAIL PROTECTED] wrote: Thank all for response. I loged on as root and changed server.xml to use port 80. When I start tomcat, it now compained that 80 is already in use. But I can

Re: running tomcat on port 80[Scanned]

2005-06-23 Thread Tom Ziemer
Hi Tony, try this: /etc/initd/apache stop if this does not work, do this: ps -ef | grep -i apache This will give you the PID, which can be used to kill the process: kill - 9 PID The next time you restart your server, apache will be started again, though - so you have to disable it. How to

Re: running tomcat on port 80[Scanned]

2005-06-23 Thread Tom Ziemer
Hi, you can configure apache to pass all requests containing *.jsp to your tomcat. This setup requires an extra connector, such as jk2. Tom Tony Smith wrote: Or, can I move my tomcat under apache so now port number is necessary in the address? --- Tony Smith [EMAIL PROTECTED] wrote:

RE: running tomcat on port 80[Scanned]

2005-06-23 Thread Mark Galbreath
List Subject: Re: running tomcat on port 80[Scanned] Or, can I move my tomcat under apache so now port number is necessary in the address? --- Tony Smith [EMAIL PROTECTED] wrote: Thank all for response. I loged on as root and changed server.xml to use port 80. When I start tomcat, it now

Re: running tomcat on port 80[Scanned]

2005-06-23 Thread Martin Gainty
@struts.apache.org Sent: Thursday, June 23, 2005 1:18 PM Subject: RE: running tomcat on port 80[Scanned] It's been awhile since I ran Tomcat with a web server (IIS or Apache), but the documentation that comes with Tomcat (including the comments in the *.xml config files) is comprehensive. The docs address

Re: running tomcat on port 80[Scanned]

2005-06-23 Thread Aleksandar Matijaca
Hi Tony, try something like this: ps -ef | grep httpd this will show you where the process is running (from which directory) -- to shut down this process, become root, and you should have somewhere in your computer the apachectl program -- do a ./apachectl stop from the directory where

RE: running tomcat on port 80[Scanned]

2005-06-23 Thread Mark Galbreath
That would be the Friggin' Ignorant Newbie Encyclopaedia? ;-) -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Thursday, June 23, 2005 2:30 PM To: Struts Users Mailing List Subject: Re: running tomcat on port 80[Scanned] and yes I agree with Mark please read