Installing Tomcat 5.5.9 for Apache 1 & 2

Is the above apache 2/1 with Tomcat 5.5.9 configuration usefull..?

  • No

    Votes: 0 0.0%
  • Somthing is Missing

    Votes: 1 33.3%
  • Usefull

    Votes: 0 0.0%
  • Very much

    Votes: 2 66.7%

  • Total voters
    3
  • Poll closed .
Hi Kod,

Post your Apache's version along with the mod_jk
There are a few changes from version to version.
Check first the error at google, it is usually related with the version that you are using.

If you cannot find any way to solve it post here your config files.

Cheers
 
Hi

I'm running Apache/1.3.37 along with mod_jk 1.2.14

and here's the mod_jk.conf

<IfModule !mod_jk.c>
LoadModule jk_module /usr/lib/httpd/modules/mod_jk.so
</IfModule>
JkWorkersFile "/usr/local/jakarta-tomcat-5.5.9/conf/jk/workers.properties"
JkLogFile "/usr/local/jakarta-tomcat-5.5.9/logs/mod_jk.log"
JkMount /*.jsp ajp13
JkMount /servlet/* ajp13
JkMount /servlets/* ajp13
JkMount /*.do ajp13
JkMount /manager/* ajp13
JkLogLevel emerg

I checked the error with google, nothing helpful there.

Thanks
 
If we want to run servlets then simply put the class files in the path define in server.xml /usr/local/tomcat/mysite.com
 
Followed the instructions using JDK 5.0.14 Tomcat 5.5.25.

The only issue I ran into was that I was getting this error in the apache error log (apache 1.3):

Cannot remove module mod_jk.c: not found in module list

After searching the web I found an article that mentioned that you also need to do the addmodule AddModule mod_jk.c at the end of the AddModules and the include of the mod_jk.conf after that. Doing that did the trick for me.

The article is kind of old but provided some other useful info for newbies to Tomcat:

http://www.yolinux.com/TUTORIALS/LinuxTutorialTomcat.html
 
Hello!
Thanks a lot for your tutorial... i have followed every step, and everything work correctly. Except for one thing: every page .do or .jsp returns an Internal Server Error 500.
Why? :confused:
 
Back
Top