I am asked to recompile mo_ssl
with openssl 1.0.2 in SuseSE11SP3.
However, I am a newbie to Suse, but know a little bit of linux.
Here is limitation I have. I cannot use zypper
or rpm
because company security policy does not allow me to do it. It is absurd, this is how it goes here.
Another limitation I have is this system is used by other web servers which I don't have permission. I have to make it as locally as possible.
What I want it to happen is that when I recompile apache server, I like to see mod_ssl
is linked to newer version Openssl library.
So, I downloaded Openssl 1.0.2h source file:
./confgiure --prefix=//PREFIX/openssl --opendir=/PREFIX/openssl
make test
make install
Successfully, I installed openssl on local directory.
and then I attempted to recompile httpd2.2.9 which already exists. so I went to source file in httpd 2.2.9
make clean
export LIBS=-ldl
export LD_LIBRARY_PATH="/PREFIX/openssl"
export LIBS="-L/PREFIX/openssl"
export CPPFLAGS="-I/PREFIX/include/openssl"
./configure --prefix=/PREFIX/apache22 --enable-so --enable-ssl=ssl -with-ssl=/PREFIX/openssl --enable-module=shared CC=/usr/bin/gcc
make install
There were some errors but I kind of figured out and make it compiled. However,
the final result for mod_ssl
is still linked to old Openssl 0.9.8 instead of newer version 1.0.2h
What did I miss in these steps? Or where did I go wrong?
//openssl install
./config -fPIC shared --prefix=/PREFIX/openssl --openssldir=/PREFIX/openssl
make
make test
make install
// install apache2
//recompiling after apache2 is installed with openssl
export LIBS=-ldl
export LD_LIBRARY_PATH="/PREFIX/openssl/lib"
export LDFLAGS="-L/PREFIX/openssl"
export CPPFLAGS="-I/PREFIX/openssl/include/openssl"
export CFLAGS="-Wl,-rpath=/PREFIX/openssl:/usr/lib -I/PREFIX/openssl/include/openssl"
./configure --prefix=/PREFIX/apache22 --enable-so --enable-ssl=shared -with-ssl=/PREFIX/openssl --enable-module=shared CC=/usr/bin/gcc
make
make install
The above command creates mod_ssl.so under "apache22/modules" but when I did ldd mod_ssl.so it came out like the following
linux-vdso.so.1 => (0x00007fffef8f2000)
libssl.so.1.0.0 => not found
libcrypto.so.1.0.0 => not found
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007ffe6a48d000)
libc.so.6 => /lib64/libc.so.6 (0x00007ffe6a116000)
/lib64/ld-linux-x86-64.so.2 (0x00007ffe6a913000)
libssl.so, libcrypto.so is not linked .. I don't know whatelse I can do it here to link mod_ssl.so to different version of openssl.
please help me.
Due to Alvits's help, I could write this answer in stackoverflow for the first time.
!! Kudos to Alvits !!
My original task was that I need to install different version of openssl in local direcotry which is different from system openssl. But I like to make mod_ssl which is linked to newer openssl.
First, I installed openssl with shared option, which I originally forgot about it and mod_ssl was not created. so be careful not forgetting it.
cd openssl_source_direcotry
./config -fPIC shared --prefix=/PREFIX/openssl --openssldir=/PREFIX/openssl
make
make test
make install
Next step, I added some environment variables. PREFIX is my local directory. When you install please use different name instead of PREFIX.
export LIBS=-ldl
export LD_LIBRARY_PATH="/PREFIX/openssl/lib"
export LDFLAGS="-L/PREFIX/openssl"
export CPPFLAGS="-I/PREFIX/openssl/include/openssl"
export CFLAGS="-Wl,-rpath=/PREFIX/openssl/lib:/usr/lib -I/PREFIX/openssl/include/openssl"
Next step is to recompile apache server. I assumed that apache server is already installed on your server.
./configure --prefix=/PREFIX/apache22 --with-apr=/PREFIX/apache22/bin --with-apr-util=/PREFIX/apache22/bin --enable-so --enable-ssl=shared -with-ssl=/PREFIX/openssl --enable-module=shared CC=/usr/bin/gcc
make install
Next, go to apache22/modules to confirm whether mod_ssl.so is correctly linked.
ldd mod_ssl.so
linux-vdso.so.1 => (0x00007fff823ff000)
libssl.so.1.0.0 => /PREFIX/openssl/lib/libssl.so.1.0.0 (0x00007fb3b32d4000)
libcrypto.so.1.0.0 => /PREFIX/openssl/lib/libcrypto.so.1.0.0 (0x00007fb3b2e8c000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fb3b2c3e000)
libc.so.6 => /lib64/libc.so.6 (0x00007fb3b28c7000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007fb3b26c2000)
/lib64/ld-linux-x86-64.so.2 (0x00007fb3b377d000)
One more tiem, I really appreciate Alvits for his help. without his help, I couldn't make this far.