----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

I've read the FAQ, and found a piece of what I need, this is what I did on
Redhat 6.0
---
#download apache source from http://www.apache.org/dist/apache_1.3.9.tar.gz to 
/usr/local/src 
#download jserv source from http://java.apache.org/dist/Apache_JServ_1.0.tar.gz to 
/usr/local/src
#download openssl from http://www.openssl.org/source/openssl-0.9.4.tar.gz to 
/usr/local/src 
#download mod_ssl source from http://www.modssl.org/source/mod_ssl-2.4.10-1.3.9.tar.gz 
to /usr/local/src
cd /usr/local/src
gunzip apache_1.3.9.tar.gz
tar xvf apache_1.3.9.tar
gunzip Apache_JServ_1.0.tar.gz
tar xvf Apache_JServ_1.0.tar
gunzip openssl-0.9.4.tar.gz
tar xvf openssl-0.9.4.tar
gunzip mod_ssl-2.4.10-1.3.9.tar.gz
tar xvf mod_ssl-2.4.10-1.3.9.tar

# install open ssl so we can install mod_ssl cd /usr/local/src/openssl-0.9.4
./config
make
make test
make install

# install mod_ssl so we can do https
cd /usr/local/src/mod_ssl-2.4.10-1.3.9
./configure --with-apache=/usr/local/src/apache_1.3.9

# install apache with all the goodies
#cd /usr/local/src/apache_1.3.9/modules
#mkdir jserv
cd /usr/local/src/apache_1.3.9
SSL_BASE=/usr/local/ssl ./configure --prefix=/usr/local/apache \
                                    --enable-rule=SHARED_CORE  \
                                    --enable-module=ssl \
                                    --enable-module=rewrite \
                                    --enable-shared=max
make
make certificate TYPE=custom
# Enter in all the cert stuff.

make install

# install JServ as DSO
cd /usr/local/src/ApacheJserv
# here is the problem I am having. If I do configure the first way, I get the Error: 
DSO not supported
./configure --with-apxs=/usr/local/apache/bin/apxs 
--with-apache-install=/usr/local/apache 

# if I do it this way I get asked a question and when you answer y you get the error 
message:
./configure --with-apxs=/usr/local/apache/bin/apxs
#Then I get an error that /src/modules/jserv does not exist.
---
I have managed to get this all working compiling it statically, but I have been trying 
to do it
using DSO for so long that I really want to get it working.....

Can anyone offer any help?

Thanks in advance,
Erik Meade




--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to