我使用apt-get install tomcat6在Ubuntu 9.04服务器上安装了Tomcat6.我使用管理器界面上传了一个WAR并尝试启动应用程序,但在Web界面上收到一个非常一般的错误,说它无法启动.
原文链接:https://www.f2er.com/ubuntu/349071.html我试图找到日志,以确定为什么我的战争不会开始(我怀疑低记忆,因为我在一个小的VPS)但我不知道他们在哪里.
/ var / lib / tomcat6 / logs为空.我的Tomcat启动页面可靠地告诉我以下信息;
Tomcat is installed with CATALINA_HOME in /usr/share/tomcat6 CATALINA_BASE in /var/lib/tomcat6,following the rules from /usr/share/doc/tomcat6-common/RUNNING.txt.gz.
UPDATE
我试着跑步;
$ps -ax /usr/bin/jsvc -user tomcat6 -cp /usr/share/java/commons-daemon.jar:/usr/share/tomcat6/bin/bootstrap.jar -outfile SYSLOG -errfile SYSLOG -pidfile /var/run/tomcat6.pid
但是/ var / log / syslog中没有任何内容
也跑
$losof -p PID
$ for PID in $(pgrep jsvc);do sudo ls -l /proc/$PID/fd|grep ' 1 -> ';done l-wx------ 1 root 500 64 2010-03-30 13:29 1 -> pipe:[301470406] lrwx------ 1 root 500 64 2010-03-30 13:29 1 -> /dev/null l-wx------ 1 root root 64 2010-03-30 13:29 1 -> pipe:[301470406]
谢谢,
GAV