Voglio accedere a Tomcat tramite il server web Apache utilizzando i connettori. Ho aderito alla documentazione: http://tomcat.apache.org/connectors-doc/generic_howto/quick.html L' ho modificato solo un po 'per abbinare la struttura di directory usata sul mio sistema Debian- (Squeeze).
Quindi ho aggiunto quanto segue a /etc/apache2/httpd.conf:
# Load mod_jk module
# Update this path to match your modules location
#LoadModule jk_module libexec/mod_jk.so
# Declare the module for <IfModule directive> (remove this line on Apache 2.x)
#AddModule mod_jk.c
# Where to find workers.properties
# Update this path to match your conf directory location (put workers.properties next to httpd.conf)
JkWorkersFile /etc/apache2/workers.properties
# Where to put jk shared memory
# Update this path to match your local state directory or logs directory
JkShmFile /var/log/apache2/mod_jk.shm
# Where to put jk logs
# Update this path to match your logs directory location (put mod_jk.log next to access_log)
JkLogFile /var/log/apache2/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel info
# Select the timestamp log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
# Send everything for context /examples to worker named worker1 (ajp13)
JkMount /tomcat7/* worker1
Ho commentato il caricamento del modulo, perché ciò accade già, dopo aver installato mod_jk attraverso il pacchetto-sistema (libapache2-mod-jk).
I miei lavoratori.proprietà assomigliano a questo:
# Define 1 real worker using ajp13
worker.list=worker1
# Set properties for worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=localhost
worker.worker1.port=8009
Tomcat 7 viene installato direttamente dall'archivio da Apache, perché non è un pacchetto in Squeeze. Tomcat 7 è in esecuzione e raggiungibile sotto la propria porta (8180, per non scontrarsi con tomcat6 dal sistema di pacchetti). Per quanto ho capito, dovrei vedere ora il sito tomcat con http: // host / tomcat7 / . Invece ottengo un 404. Che c'è?
Dopo aver suggerito di impostare il livello di log su debug (grazie), l'ho fatto e ho trovato il seguente messaggio di errore in mod_jk.log: 'jk_map_to_storage :: mod_jk.c (3585): manca la mappa uri per 176.9.9.55:/tomcat7 /'. Ho cercato su Google per questo e ho trovato http://old.nabble.com/mod_jk%2C-missing-uri-map-td23984359.html
Quindi le opzioni impostate in httpd.conf non sono state utilizzate in VirtualHosts. Ho aggiunto "JkMountCopy On" al mio VirtualHost e ho ottenuto prima un Tomcat 404 (anziché il httpd 404). Problema qui, che tenta di accedere esattamente allo stesso URI montato, quindi nel mio caso / tomcat7. Ho usato invece il nome della webapp come mount e tutto va bene per me.