This is a discussion on mod_ssl.so missing within the Linux Web Servers forums, part of the Web Server and Related Forums category; I'm going crazy over this, trying to install Apache 2.0.54 on a Redhat 8.0 machine. Everything ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I'm going crazy over this, trying to install Apache 2.0.54 on a Redhat 8.0
machine. Everything works, but the configure script just refuses to create mod_ssl.so. In the Apache modules directory I see mod_ssl.la and mod_ssl.a, but just not mod_ssl.so. What do I need to do to get mod_ssl.so created? Here's what I'm using with configure: ../configure \ "--with-apxs2=/usr/sbin/apxs" \ "--prefix=/etc/httpd" \ "--with-mysql" \ "--enable-track-vars" \ "--enable-debugger" \ "--enable-magic-quotes" \ "--enable-bcmath" \ "--enable-calendar" \ "--enable-ftp" \ "--with-gd" \ "--with-jpeg-dir=/usr/lib" \ "--with-png-dir=/usr/lib" \ "--with-mcrypt" \ "--with-pear" \ "--enable-sockets" \ "--enable-gd-native-ttf" \ "--enable-versioning" \ "--with-zlib" \ "--prefix=/etc/httpd" \ "--exec-prefix=/etc/httpd" \ "--bindir=/usr/bin" \ "--sbindir=/usr/sbin" \ "--sysconfdir=/etc/httpd/conf" \ "--enable-mods-shared=all" \ "--datadir=/var/www" \ "--with-perl=/usr/bin/perl" \ "--enable-ssl" \ "--enable-shared=ssl" \ "--with-ssl=/usr/include/openssl" |
|
|||
|
Shabam schrieb:
> I'm going crazy over this, trying to install Apache 2.0.54 on a Redhat 8.0 > machine. Everything works, but the configure script just refuses to create > mod_ssl.so. In the Apache modules directory I see mod_ssl.la and mod_ssl.a, > but just not mod_ssl.so. What do I need to do to get mod_ssl.so created? > > Here's what I'm using with configure: > > ./configure \ > "--with-apxs2=/usr/sbin/apxs" \ > "--prefix=/etc/httpd" \ > "--with-mysql" \ > "--enable-track-vars" \ > "--enable-debugger" \ > "--enable-magic-quotes" \ > "--enable-bcmath" \ > "--enable-calendar" \ > "--enable-ftp" \ > "--with-gd" \ > "--with-jpeg-dir=/usr/lib" \ > "--with-png-dir=/usr/lib" \ > "--with-mcrypt" \ > "--with-pear" \ > "--enable-sockets" \ > "--enable-gd-native-ttf" \ > "--enable-versioning" \ > "--with-zlib" \ > "--prefix=/etc/httpd" \ > "--exec-prefix=/etc/httpd" \ > "--bindir=/usr/bin" \ > "--sbindir=/usr/sbin" \ > "--sysconfdir=/etc/httpd/conf" \ > "--enable-mods-shared=all" \ > "--datadir=/var/www" \ > "--with-perl=/usr/bin/perl" \ > "--enable-ssl" \ > "--enable-shared=ssl" \ > "--with-ssl=/usr/include/openssl" Why don't you compile it into the httpd directly? httpd -l should return "mod_ssl" "./configure" \ "--enable-modules=all" \ "--enable-ssl" \ "--enable-so" Especially just leave out "--enable-shared=ssl" "--enable-mods-shared=all" B. -- BM Computer-Services, Bergmannstr. 66, 10961 Berlin Webdesign, Internet, Layout und Grafik Tel.: 030/20649400, mobil 0175/7419517, Fax: 030/20649401 Web: http://www.bmservices.de, eMail: kontakt@bmservices.de |
| Thread Tools | |
| Display Modes | |
|
|