我正在尝试在OS 10.10上启动我的apache tomcat服务器。
运行startup.sh
时,这是我的终端输出ChristophersMBP:~ christopher$ $CATALINA_HOME/bin/startup.sh
Using CATALINA_BASE: /Users/christopher/tomcat
Using CATALINA_HOME: /Users/christopher/tomcat
Using CATALINA_TMPDIR: /Users/christopher/tomcat/temp
Using JRE_HOME: /Library/Java/Home
Using CLASSPATH: /Users/christopher/tomcat/bin/bootstrap.jar:/Users/christopher/tomcat/bin/tomcat-juli.jar
这是我的环境设置文件
export JAVA_HOME=/Library/Java/Home
export PATH="/Library/Java/Home/bin:$PATH"
export CLASSPATH=.:/tomcat/lib/servlet-api.jar:/tomcat/lib/jsp-api.jar:/tomcat/lib/el-api.jar:/tomcat/lib/tomcat-dbcp.jar
export ANT_HOME=/tomcat
export TOMCAT_HOME=/tomcat
export CATALINA_HOME=/tomcat
我已尝试在Chrome中运行http://localhost:8080/,但仅显示“此网页不可用”消息。调用startup.sh后,我没有收到弹出窗口或滞后,只有终端输出。
答案 0 :(得分:0)
您需要检查服务器是否正在运行并正在侦听:
ps -fe | grep tomcat
netstat -tupan | grep 8080
查看我的Tomcat Init脚本:https://gist.github.com/miglen/5590986