I haven't got my book with me but its quite straight forward so I'll tell
you the steps I can remember.
If I can do it and works first time you can do it.

Assumptions
you have installed Apache and tomcat to your chosen directory And obviously
SDK.
My installation was on NT so you will obviously have to change the
appropriate directories.

step 1. Environment variables
TOMCAT_HOME =C:\Program Files\Apache Group\jakarta-tomcat-3.2
JAVA_HOME =c:\jdk1.3
ANT_HOME =C:\Program Files\Apache Group\jakarta-tomcat-3.2

step 2.
Put the following line in my Apache/bin/httpd.conf configuration file

ServerName localhost
include "C:/Program Files/Apache
Group/jakarta-tomcat-3.2/conf/tomcat-apache.conf" # Notice forward slashes

step 3.
create directory in  ...\jakarta-tomcat-3.2\webapps\myproj for your JSPs and
Index.html

step 4.
to register your new application with tomcat insert following line in
web.xml

<Context path="/projsp"
                 docBase="webapps/myproj"
                 crossContext="false"
                 debug="0"
                 reloadable="true" >
</Context>

step 5.

copy the DLL ApacheModuleJServ.dll into Apache/modules you get this DLL from
tomcat site.

6.
reboot
start tomcat FIRST with the start.sh file
start Apache.

7. I think you should off and away.

Regards,
Zahid


> -----Original Message-----
> From: Deepak C S [SMTP:[EMAIL PROTECTED]]
> Sent: 11 December 2000 12:31
> To:   [EMAIL PROTECTED]
> Subject:      Tomcat 3.2 install with Apache 1.3(linux)
>
>    Hi Friends,
>
>                    Can anybody pls let me know How to Install
> jakarta-tomcat3.2 with Apache(linux) and configure the
>         whole things to run JSPs.
>
>     Thanx in advance,
>     Deeps
> Thanks and Regards,
>
> Deepak C. S.
> Planetasia Ltd,
> A Microland Group Company,
> Bangalore,India
> Contact: 5522252 54 57 58 58 Extn 544
> Email: [EMAIL PROTECTED]
>
> ==========================================================================
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to