Dear Guru, You can easily integrate Apache with Tomcat web server. You need to download a dll file from jakarta website and you have to give a reference in httpd.conf file. I am successfully running apache with tomcat webserver.
Followiing pages will be verymuch helpful to you. http://jakarta.apache.org/tomcat/tomcat-3.2-doc/ http://jakarta.apache.org/tomcat/tomcat-3.2-doc/mod_jk-howto.html At first download the mod_jk.dll from the following link http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.3/bin/win32/i38 6/ => Copy mod_jk.dll to Apache's modules directory. then add the following configuration at the end of httpd.conf file. This is the configuration for windonws os. sample configuration in httpd.conf file (At the end of httpd.conf file) if you have any pblm, please let me know. Thank you very much. Looking forward to hearing from you again. ### Section 3: Virtual Hosts # # VirtualHost: If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at <URL:http://www.apache.org/docs/vhosts/> # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration. # # Use name-based virtual hosting. # #NameVirtualHost * # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for requests without a known # server name. # #<VirtualHost *> # ServerAdmin [EMAIL PROTECTED] # DocumentRoot /www/docs/dummy-host.example.com # ServerName dummy-host.example.com # ErrorLog logs/dummy-host.example.com-error_log # CustomLog logs/dummy-host.example.com-access_log common #</VirtualHost> Include C:/jakarta-tomcat-3.3a/conf/jk/mod_jk.conf LoadModule jk_module libexec/mod_jk.so AddModule mod_jk.c JkWorkersFile C:/jakarta-tomcat-3.3a/conf/jk/workers.properties JkLogFile /usr/local/apache/logs/mod_jk.log JkLogLevel info JkLogStampFormat "[%a %b %d %H:%M:%S %Y] " # First Virtual Host. # <VirtualHost 10.0.0.1:80> DocumentRoot /web/host1 ServerName host1.apache.org JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 </VirtualHost> # Second Virtual Host. Also accessible via HTTPS # <VirtualHost 10.0.0.2:80> DocumentRoot /web/host2 ServerName host2.apache.org JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 </VirtualHost> <VirtualHost 10.0.0.2:443> DocumentRoot /web/host2 ServerName host2.apache.org # SSLEngine On JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 </VirtualHost> ============================================================== ============================================================== ============================================================== -----Original Message----- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Raghupathy, Gurumoorthy Sent: 04 March 2002 23:06 To: [EMAIL PROTECTED] Subject: Need Some help... Hi, Can any one let me know how to integrate TOMCAT and apache. ( good if you send me any modules if any ) I know i am asking a dumb question. But i need this thing urgently. Please someone help me .... Regards guru ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
