Windows 7 Apache Tomcat 6, unable to reach 127.0.0.1:8080

merrix

New Member
Here are the steps:

* download Link Removed - Invalid URL
* unzip to C:\apache-tomcat-6.0.18\
* run/powershell
* typed these commands:

Code:
$env:path += \";C:\apache-tomcat-6.0.18\bin\"
$env:JAVA_HOME = \"C:\Java\jdk1.6.0_12\"
$env:CATALINA_HOME = \"C:\apache-tomcat-6.0.18\"
catalina start

Here is the output:

Code:
Feb 3, 2009 1:00:32 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Feb 3, 2009 1:00:32 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 586 ms
Feb 3, 2009 1:00:32 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Feb 3, 2009 1:00:32 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
Feb 3, 2009 1:00:33 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Feb 3, 2009 1:00:33 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Feb 3, 2009 1:00:33 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/31 config=null
Feb 3, 2009 1:00:33 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 676 ms

I should be able to reach the "home" page by going to 127.0.0.1:8080, but I can't. If anyone could shed some light on this it would be greatly appreciated. I've done this plenty of times but Windows 7 is the first to have issues.
 
Here are the steps:

* download Link Removed - Invalid URL
* unzip to C:\apache-tomcat-6.0.18\
* run/powershell
* typed these commands:

Code:
$env:path += \";C:\apache-tomcat-6.0.18\bin\"
$env:JAVA_HOME = \"C:\Java\jdk1.6.0_12\"
$env:CATALINA_HOME = \"C:\apache-tomcat-6.0.18\"
catalina start

Here is the output:

Code:
Feb 3, 2009 1:00:32 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Feb 3, 2009 1:00:32 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 586 ms
Feb 3, 2009 1:00:32 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Feb 3, 2009 1:00:32 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
Feb 3, 2009 1:00:33 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Feb 3, 2009 1:00:33 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Feb 3, 2009 1:00:33 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/31 config=null
Feb 3, 2009 1:00:33 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 676 ms

I should be able to reach the \"home\" page by going to 127.0.0.1:8080, but I can't. If anyone could shed some light on this it would be greatly appreciated. I've done this plenty of times but Windows 7 is the first to have issues.


It shows....

The term 'catalina' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was in cluded, verify that the path is correct and try again.
At line:1 car:9
+catalina <<<< start
+CategoryInfo : ObjectNotFound: <catalina:String> [], CommandNot FoundException
+ FullyQualifiedErrorID : CommandNotFoundException


..............
 
Back
Top