Ho installato Tomcat6 su un server Ubuntu 9.04 usando apt-get install tomcat6. Ho caricato un WAR usando l'interfaccia del gestore e ho provato ad avviare l'applicazione ma ho ricevuto un errore piuttosto generico sull'interfaccia Web dicendo che non poteva essere avviato.
Sto cercando di trovare i registri per determinare perché la mia guerra non inizierà (sospetto di avere poca memoria perché sono su un piccolo VPS) ma non so dove siano.
/ var / lib / tomcat6 / logs è vuoto. La mia splash page Tomcat mi informa in modo affidabile di quanto segue;
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.
AGGIORNARE
Ho provato a correre;
$ 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
Ma non c'è nulla in / var / log / syslog
Anche correre
$ losof -p PID
non ha mostrato alcun file di registro ...
$ 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]
Grazie,
Gav