This is a log of my installation/Compilation of Apache DSO with SSL, MM, Tomcat3.0 (source distribution) under Solaris 2.7 I had to use the source, since the 3.0 binary distribution has jserv module compiled without EAPI. This stuff if based on INSTALL file which comes with mod_ssl and on the http://www.servlets.com/soapbox/techtips/ December 8, 1999 Install instructions for Apache 1.3.9 with Tomcat 3.0 by Jason Hunter. If you are outside US, please look into INSTALL which comes with mod_ssl, since you do not need RSAREF and can use more robust code [your 8) and apache configure will be different]. 2) Install Java 1.2 under Solaris if you do not have it. If you type java -version and it tells you that you have JDK 1.2, you are OK. If not you need to install. It is simple. You get a package from http://www.javasoft.com/: a) click on Products & APIs b) choose JAVA 2 SDK, Standard Edition http://www.javasoft.com/products/jdk/1.2/index.html c) take: Java 2 SDK SolarisTM Production Release (J2SE) [I really wonder whu Sun constantly changes names. It is some ill-advised marketing ploy which unfortunately wastes a lot of time of other people]. You need: d) You need essentially all files. I placed them in /usr/local/java 393617 Feb 2 09:56 1.2.1_04_Developer-Guide.ps 37347 Feb 2 09:56 1.2.1_04_Release-Notes.html 274881 Feb 2 09:56 1.2.1_04_docs_sparc.tar.Z 13287936 Feb 2 09:58 1.2.1_04_patches_sparc_5.5.1.tar 4773888 Feb 2 09:58 1.2.1_04_patches_sparc_5.7.tar 11592 Feb 2 09:58 README.sparc 19826325 Feb 2 10:01 Solaris_JDK_1.2.1_04_sparc.bin e) Read the README.sparc and do what they say. i) chmod +x Solaris_JDK_1.2.1_04_sparc.bin ii) ./Solaris_JDK_1.2.1_04_sparc.bin iii) Move the old install directory of Java 2 (if exists): mv /usr/java1.2 /usr/java1.2_previous iii) move the directory Solaris_JDK_1.2.1_04 just created to where you want it, and you better want it at /usr/java1.2 mv Solaris_JDK_1.2.1_04 /usr/java1.2 iv) Since my solaris is 2.7 % uname -a SunOS heechee 5.7 Generic_106541-08 sun4u sparc SUNW,Ultra-250 I used patches for it: tar xvf 1.2.1_04_patches_sparc_5.7.tar This created a directory ./5.7 with for tar.Z files in it 284963 Oct 26 19:57 106980-05.tar.Z 2660971 Oct 26 19:57 107078-10.tar.Z 1308491 Oct 26 19:57 107607-01.tar.Z 514653 Oct 26 19:57 107636-01.tar.Z v) I unpacked each patch as: gtar Zxvf 1xxxxxx-xx.tar.Z this creates a directory 1xxxxxx-xx for each patch cd 1xxxxxx-xx and read README.106980-05. Then run pkgadd pkgadd -d . SUN* and answer yes. f) test if java installed corretly: java -version java version "1.2.1" Solaris VM (build Solaris_JDK_1.2.1_04, native threads, sunwjit) 4) Set your environment variables for Java (I am assuming you use some Bourne shell lookalike -- ksh or bash. JAVA_HOME=/usr/java1.2 export JAVA_HOME PATH=/usr/local/bin:${JAVA_HOME}/bin:${PATH} export PATH CLASSPATH=${JAVA_HOME}/lib/tools.jar:${JAVA_HOME}/lib/dt.jar export CLASSPATH 5) Make top directory for Tomcat installation. I did /usr/local/apache_t3.0s but if you do some other, you need to remember to use it in the instructions below, mkdir /usr/local/apache_t3.0s 6) I also make a subdirectory sources to have all needed sources in one place. mkdir /usr/local/apache_t3.0s/sources cd /usr/local/apache_t3.0s/sources place there tar files, and then unpack them as shown below: a) apache_1.3.11.tar.gz from http://www.apache.org/dist/ gtar zxvf apache_1.3.11.tar.gz b) mod_ssl-2.5.0-1.3.11.tar.gz from http://www.modssl.org gtar zxvf mod_ssl-2.5.0-1.3.11.tar.gz c) openssl-0.9.4.tar.gz from http://www.openssl.org gtar zxvf openssl-0.9.4.tar.gz d) mm-1.0.12.tar.gz from http://www.engelschall.com/sw/mm/ gtar zxvf mm-1.0.12.tar.gz e) rsaref20.tar.Z -- it is no longer distributed, and I got it from my private museum. It is available from many places on the Web outside US. Search the Web FOR RSAREF 2.0. mkdir rsaref-2.0 cd rsaref-2.0 gtar Zxvf ../rsaref20.tar.Z cd .. f) zipped sources for tomcat 3.0 from http://jakarta.apache.com http://jakarta.apache.org/builds/tomcat/release/v3.0/src/ jakarta-tomcat.src.zip 15-Dec-1999 18:53 1.5M jakarta-tools.src.zip 15-Dec-1999 18:53 1.2M jakarta-watchdog.src.zip 15-Dec-1999 18:53 2.4M I unzipped them as: cd /usr/local/apache_t3.0s/sources unzip jakarta-tomcat.src.zip unzip jakarta-tools.src.zip unzip jakarta-watchdog.src.zip 7) Compiled RSAREF library for openssl since we are in US and RSA has a patent, and we cannot use the decent implementation of crypto libraries. If you are in Europe, you can skip this thing. cd /usr/local/apache_t3.0s/sources/rsaref-2.0 cp -rp install/unix local cd local edited makefile to have CC = gcc changed all occurrances of cc --> $(CC) added -fPIC to CFLAGS make mv rsaref.a librsaref.a 8) Compiled the openssl [if you are in Europe, you need to check the mod_ssl INSTALL not to include RSAREF] cd /usr/local/apache_t3.0s/sources/openssl-0.9.4 sh config \ -L/usr/local/apache_t3.0s/sources/rsaref-2.0/local/rsaref -fPIC make make test 9) Compiled MM shared memory library cd /usr/local/apache_t3.0s/sources/mm-1.0.12 ./configure --disable-shared make cd .. 10) Configured mod_ssl cd /usr/local/apache_t3.0s/sources/mod_ssl-2.5.0-1.3.11 EAPI_MM=../mm-1.0.12 \ ./configure \ --with-apache=/usr/local/apache_t3.0s/sources/apache_1.3.11 11) Configure and make and install Apache with DSO support: cd /usr/local/apache_t3.0s/sources/apache_1.3.11 SSL_BASE=/usr/local/apache_t3.0s/sources/openssl-0.9.4 \ RSA_BASE=/usr/local/apache_t3.0s/sources/rsaref-2.0/local \ EAPI_MM=/usr/local/apache_t3.0s/sources/mm-1.0.12 \ ./configure --prefix=/usr/local/apache_t3.0s \ --enable-module=so \ --enable-rule=SHARED_CORE \ --enable-module=most \ --enable-shared=max \ --enable-module=ssl \ --enable-shared=ssl make make certificate TYPE=custom make install My entries for certificates with make certificate TYPE=custom were defaults, no passwords, and: STEP 0: R STEP 2: 1. Country Name [XY]:US 2. State or Province Name [Snake Desert]:Ohio 3. Locality Name [Snake Town]:Columbus 4. Organization Name [Snake Oil, Ltd]:OSC 5. Organizational Unit Name [Cer..Authority]:Gateway 6. Common Name [Snake Oil CA]:heechee.ccl.net 7. Email Address [ca@snakeoil.dom]:jkl@ccl.net 8. Certificate Validity [365]:1000 STEP 3: 3 STEP 5: 1. Country Name [XY]:US 2. State or Province Name [Snake Desert]:Ohio 3. Locality Name [Snake Town]:Columbus 4. Organization Name [Snake Oil, Ltd]:OSC 5. Organizational Unit Name [Webserver Team]:PSE 6. Common Name [www.snakeoil.dom]:heechee.ccl.net 7. Email Address [www@snakeoil.dom]:jkl@ccl.net 8. Certificate Validity [365]:1001 STEP 6: 3 STEP 7:n STEP 8:n 12) edited a file in /usr/local/apache_t3.0s/conf/httpd.conf and added (actually uncommented): ServerName heechee.ccl.net 13) Testing if Apache works: a) make sure other installation of apache is not running, or if it runs, it does not use port 80 and port 443. (do: ps -ef | grep httpd), and if httpd runs, kill it with its own apachectl script or just use (not recommended) killall httpd b) start apache with: /usr/local/apache_t3.0s/bin/apachectl startssl If you have warning, you have a problem, and try to do "exactly what I say" next time {:-)}. c) Use your browser (preferable on some other machine) and check if http: and https: work In my case, I tries URLs: http://heechee.ccl.net/ and https://heechee.ccl.net/ In the https case you should get a lot of windows which ask you for accepting the certificate. Just click Next to see if you can go through to the page. d) Stop apache, since you are not finshed yet. /usr/local/apache_t3.0s/bin/apachectl stop 14) Compiled mod_jserv.so included in jakarta-tomcat zip archive. cd /usr/local/apache_t3.0s/sources cd jakarta-tomcat/src/native/apache/jserv /usr/local/apache_t3.0s/bin/apxs -c mod_jserv.c jserv*.c cp mod_jserv.so /usr/local/apache_t3.0s/libexec 15) Building and installing tomcat cd /usr/local/apache_t3.0s/sources/jakarta-tomcat chmod 755 build.sh ./build.sh 16) Starting stand alone tomcat and testing: cd /usr/local/apache_t3.0s/sources/build/tomcat ./startup.sh In my browser I called: http://heechee.ccl.net:8080/ and it gave me the Tomcat examples page. Examples worked, so I shut down. ./shutdown.sh 17) Added tomcat.conf to httpd.conf by adding a line: Include /usr/local/apache_t3.0s/sources/build/tomcat/etc/tomcat.conf at the end of /usr/local/apache_t3.0s/conf/httpd.conf 18) Edited the apachectl in /usr/local/apache_t3.0s/bin and created apache-tomcat to start tomcat/apache a) At the beginning added, just after "END CONFIGURATION SECTION" I added: TOMCAT_HOME=/usr/local/apache_t3.0s/sources/build/tomcat export TOMCAT_HOME JAVA_HOME=/usr/local/jdk1.2.2 export JAVA_HOME PATH=$JAVA_HOME/bin:${PATH} export PATH b) under case startssl added 2 lines after: if $HTTPD -DSSL; then cd $TOMCAT_HOME ./startup.sh c) under case stop added 2 lines after: if kill $PID ; then cd $TOMCAT_HOME ./shutdown.sh d) changed apache-tomcat to executable : chmod 755 /usr/local/apache_t3.0s/bin/apache-tomcat e) allow log writing for group nobody cd /usr/local/apache_t3.0s/logs chmod g+w * chgrp nobody * chmod g+rwx . chgrp nobody . 19) Started the apache/tomcat as: /usr/local/apache_t3.0s/bin/apache-tomcat startssl and checked if http://heechee.ccl.net/examples and https://heechee.ccl.net/examples worked. They did, so I killed the server with: /usr/local/apache_t3.0s/bin/apache-tomcat stop