tomcat not starting properly

2005-07-26 Thread blackwater dev
Hello,

I am having trouble starting tomcat.  It gets to a point then just stops. 

What am I doing wrong?

[EMAIL PROTECTED] bin]# ./catalina.sh jpda run
Using CATALINA_BASE:   /usr/tomcat
Using CATALINA_HOME:   /usr/tomcat
Using CATALINA_TMPDIR: /usr/tomcat/temp
Using JRE_HOME:   /usr/java/jdk1.5.0_04
Listening for transport dt_socket at address: 8000
Jul 26, 2005 8:48:25 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-80
Jul 26, 2005 8:48:25 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 2932 ms
Jul 26, 2005 8:48:26 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Jul 26, 2005 8:48:26 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.9
Jul 26, 2005 8:48:26 AM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
Jul 26, 2005 8:48:32 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-80
Jul 26, 2005 8:48:33 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Jul 26, 2005 8:48:33 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/179  config=null
Jul 26, 2005 8:48:33 AM org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
Jul 26, 2005 8:48:34 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 8138 ms

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



Re: tomcat not starting properly

2005-07-26 Thread blackwater dev
Just me being stupid and trying to hit 8080...thanks!

On 7/26/05, Peter Crowther [EMAIL PROTECTED] wrote:
  From: blackwater dev [mailto:[EMAIL PROTECTED]
  I am having trouble starting tomcat.  It gets to a point then
  just stops.
 
  What am I doing wrong?
 
  [EMAIL PROTECTED] bin]# ./catalina.sh jpda run
  Using CATALINA_BASE:   /usr/tomcat
  Using CATALINA_HOME:   /usr/tomcat
  Using CATALINA_TMPDIR: /usr/tomcat/temp
  Using JRE_HOME:   /usr/java/jdk1.5.0_04
  Listening for transport dt_socket at address: 8000
 
 You have JPDA debugging enabled?
 
  Jul 26, 2005 8:48:25 AM org.apache.coyote.http11.Http11Protocol init
  INFO: Initializing Coyote HTTP/1.1 on http-80
  Jul 26, 2005 8:48:25 AM org.apache.catalina.startup.Catalina load
  INFO: Initialization processed in 2932 ms
  Jul 26, 2005 8:48:26 AM org.apache.catalina.core.StandardService start
  INFO: Starting service Catalina
  Jul 26, 2005 8:48:26 AM org.apache.catalina.core.StandardEngine start
  INFO: Starting Servlet Engine: Apache Tomcat/5.5.9
  Jul 26, 2005 8:48:26 AM org.apache.catalina.core.StandardHost start
  INFO: XML validation disabled
  Jul 26, 2005 8:48:32 AM org.apache.coyote.http11.Http11Protocol start
  INFO: Starting Coyote HTTP/1.1 on http-80
 
 OK, there's port 80
 
  Jul 26, 2005 8:48:33 AM org.apache.jk.common.ChannelSocket init
  INFO: JK: ajp13 listening on /0.0.0.0:8009
 
 There's its shutdown port
 
  Jul 26, 2005 8:48:33 AM org.apache.jk.server.JkMain start
  INFO: Jk running ID=0 time=0/179  config=null
  Jul 26, 2005 8:48:33 AM
  org.apache.catalina.storeconfig.StoreLoader load
  INFO: Find registry server-registry.xml at classpath resource
  Jul 26, 2005 8:48:34 AM org.apache.catalina.startup.Catalina start
  INFO: Server startup in 8138 ms
 
 ... all looks OK to me.  It starts up and is waiting for you to connect
 to eg. http://localhost:80.  What isn't happening that you would expect?
 
 - Peter


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



dubugging tomcat

2005-07-25 Thread blackwater dev
Hello,

I have fedora core 3 and have tomcat installed.  I can start it up
successfully using startup.sh but can't connect to localhost at
localhost:8080.  How can I debug this to see what is going on?

Thanks!

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



Re: dubugging tomcat

2005-07-25 Thread blackwater dev
I turned of iptables and it didn't help.  I tried nstat and didn't see
anything listed with port 8080.

Thanks!

On 7/25/05, Edrei Marcelo [EMAIL PROTECTED] wrote:
  
 this port could be block by the firewall try iptables -L to see the rules an
 netstat to see wich port your server is listening, sorry but i dont the
 remember now the best parameter to see this, but you can see it at man
 netstat 
   
 - Original Message - 
  
 From: blackwater dev 
 To: tomcat-user@jakarta.apache.org 
 Sent: Monday, July 25, 2005 4:50 PM 
 Subject: dubugging tomcat 
 
 Hello,
 
 I have fedora core 3 and have tomcat installed.  I can start it up
 successfully using startup.sh but can't connect to localhost at
 localhost:8080.  How can I debug this to see what is going on?
 
 Thanks!
 
 -
 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: dubugging tomcat

2005-07-25 Thread blackwater dev
Ah...tells me this relese of tomcat was packaged to run on J2SE 5.0 or
later but can run on earlier JVM's by getting a compatibility package.
 Looks like I need the latest J2SE.

Thanks!

On 7/25/05, Larry Meadors [EMAIL PROTECTED] wrote:
 Start it with this (from $CATALINA_HOME/bin):
  
  ./catalina.sh jpda run
  
  Larry
  
 
 
 On 7/25/05, blackwater dev [EMAIL PROTECTED] wrote:
  
  Hello,
  
  I have fedora core 3 and have tomcat installed.  I can start it up
  successfully using startup.sh but can't connect to localhost at
  localhost:8080.  How can I debug this to see what is going on?
  
  Thanks!
  
 
 -
  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]