[root@localhost bin]# ./startup.sh
Using CATALINA_BASE: /software/apache-tomcat-6.0.37-src
Using CATALINA_HOME: /software/apache-tomcat-6.0.37-src
Using CATALINA_TMPDIR: /software/apache-tomcat-6.0.37-src/temp
Using JRE_HOME: /software/jdk1.7.0_40
Using CLASSPATH: /software/apache-tomcat-6.0.37-src/bin/bootstrap.jar
网上基本上多是这样,出现以上一堆东西,证明tomcat在启动了,为什么在浏览器输入tomcat的访问地址确访问不到呢?如下:http://localhost:8080
页面提示是这样:
Unable to connect
Firefox can't establish a connection to the service at localhost:8080.
*The site could be temporarily unavailable or too busy.Try again in a few moments.
*if you are unable to load any pages,check your computer's network connection.
*if your computer or network is protected by a firewall or proxy,make sure that Firefox is permitted to access the Web.
然后我又把linux下面的防火墙给关了,
检查结果如下
# chkconfig iptables --list
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off
也重启过了,还是访问不到tomcat(http://localhost:8080)
哪位朋友帮看看是什么原因?十分感谢。。。
6 个解决方案
#1
service iptables stop
#2
停止了这个服务也是一样,没法访问,好奇怪。。。
#3
端口配的是8080么...
#4
tomcat默认端口也就8080呢,没有改到。。。。
#5
查看tomcat日志信息提示:Error: Could not find or load main class org.apache.catalina.startup.Bootstrap
#6
原来以上是在源码包什么跑出现的这种情况,换了个安装版的ok了。。。谢谢关注。。
#1
service iptables stop
#2
停止了这个服务也是一样,没法访问,好奇怪。。。
#3
端口配的是8080么...
#4
tomcat默认端口也就8080呢,没有改到。。。。
#5
查看tomcat日志信息提示:Error: Could not find or load main class org.apache.catalina.startup.Bootstrap
#6
原来以上是在源码包什么跑出现的这种情况,换了个安装版的ok了。。。谢谢关注。。