Tomcat:一则不能正常启动的排错
有时候TOMCAT启动的时候,会遇到下面的现象:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
[root@lab tomcat]# bin/catalina.sh start Using CATALINA_BASE: /tomcat Using CATALINA_HOME: /tomcat Using CATALINA_TMPDIR: /tomcat/temp Using JRE_HOME: /usr Using CLASSPATH: /tomcat/bin/bootstrap.jar:/tomcat/bin/tomcat-juli.jar Tomcat started. [root@lab tomcat]# [root@lab tomcat]# netstat -tupln | grep 8080 [root@lab tomcat]# [root@lab conf]# ps -ef | grep java root 4167 3858 0 00:47 pts/2 00:00:00 grep java [root@lab conf]# |
可以看到,事实上TOMCAT是没有起来的。
————————————————
这个现象的产生原因很多,比方说在本环境中的原因:server.xml,中语法错误,导致的不正常启动[……]