I've been trying to install the mod_jk 2 module statically into Apache
version 2.0.49 using the directions on the Jakarta site but continue to have
a failed install requesting that I configure Apache before installing
mod_jk.  However if I install apache first it doesn't install mod_jk
statically.  Below is the directions from the site followed by the pertinent
parts of my make file.  Any help on the subject would be appreciated.  I've
looked around and mostly find that people use the so module way of
installing.

Thanks,

Ryan Peterson

-------------------------------------------------------
/home/apache20/httpd-2.0.43 is the directory where the httpd-2.0 sources are
located.
[EMAIL PROTECTED] ~ $ ./configure --with-apache=/home/apache20/httpd-2.0.43
[EMAIL PROTECTED] ~ $ make

Install the mod_jk library and other files in
/home/apache20/httpd-2.0.43/modules:
[EMAIL PROTECTED] ~ $ make install

It is not possible to configure Apache directly because the config.m4 of
mod_jk must be added to the configure of httpd-2.0.
[EMAIL PROTECTED] ~ $ cd /home/apache20/httpd-2.0.43
[EMAIL PROTECTED] ~ $ sh buildconf
[EMAIL PROTECTED] ~ $ configure ... --with-mod_jk
[EMAIL PROTECTED] ~ $ make
[EMAIL PROTECTED] ~ $ make install
-------------------------------------------
APACHEV=2.0.49
JKV=2.0.4

OBJ=/usr/local/
SRC=/home/jgordon/toinstall/
STAGE=$(SRC)stage/

APACHE=httpd-$(APACHEV)
APACHEO=$(OBJ)$(APACHE)

apache: $(APACHEO)/bin/httpd
 >apache

$(APACHEO)/bin/httpd: httpd-$(APACHEV).tar.gz openssl
jakarta-tomcat-connectors-jk2-src-current.tar.gz
 cd $(STAGE); tar xzf $(SRC)httpd-$(APACHEV).tar.gz; \
 cd $(STAGE); tar xzf
$(SRC)jakarta-tomcat-connectors-jk2-src-current.tar.gz; \
 cd jakarta-tomcat-connectors-jk2-$(JKV)-src/jk/native2; pwd; echo "cd
done"; \
 ./buildconf.sh; pwd; echo "buildconf done"; \
 ./configure --with-apache2=${STAGE}${APACHE}; pwd; echo "configure done"; \
 make; pwd; echo "make1 done"; \
 make install; pwd; echo "make2 done"; \
 cd $(STAGE)httpd-$(APACHEV); \
 sh buildconf; \

./configure --prefix=$(APACHEO) --enable-ssl --with-mod_jk --enable-rewrite;
\
 make; \
 make install


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to