domain shows tomcat default page

Error : All domains shows the  tomcat default page
Solution:
The problem I get is that all requests now are being sent to tomcat. The two html/php apps show the tomcat default page (but when you click on the links they are dead links). The problem due the httpd.conf file. The mod_jk.so entry not present in httpd.conf file so add the following line in /etc/httpd/conf/httpd.conf file.
======================
LoadModule jk_module modules/mod_jk.so
======================
Then

save file and restart httpd and tomcat service on the server.

Done

Leave a Comment