Probleme de couplage Apache-Tomcat
Bonjour,
je voudrais coupler apache et tomcat, j'ai suivis ce tutoriel : http://zekey.developpez.com/tutoriel/apache/tomcat/.
J'ai rajoute ca dans httpd.conf :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13
|
LoadModule jk_module modules/mod_jk.so
#
# Mod_jk settings
#
(ligne500:) JkWorkersFile "C:\Program Files\Apache Software Foundation\Apache2.2\conf\workers.properties"
JkLogFile "C:\Program Files\Apache Software Foundation\Apache2.2\logs\mod_jk.log"
JkLogLevel warning
JkMount /tomcat-docs default
JkMount /tomcat-docs/* default
# End of mod_jk settings |
et j'ai mis ca dans worker.properties :
Code:
1 2 3 4 5 6 7
| workers.tomcat_home=C:\apache-tomcat-6.0.13
workers.java_home=C:\Sun\SDK\jdk\
ps=/
worker.list=default
worker.default.port=8009
worker.default.host=127.0.0.1
worker.default.type=ajp13 |
Mais lors du démarrage de apache il me dit ca :
Code:
1 2
| Syntax error on line 500 on C:\...\...\httpd.conf
cannot find the worker file specified |
Pouvez-vous m'aider ?
Merci