Click to See Complete Forum and Search --> : Suicide


Anon
02-09-2001, 04:43 PM
That's right, I feel like commiting suicide guys.

This is not a php install issue, but I am hoping some good admin can help me out a bit.

-------------

I am installing mod_ssl as a dynamic mod on apache_1.3.17, (RSAREF enabled on openssl-0.9.6) - and this is what happens.

1) build rsaref-2.0 (ok)
2) openssl config rsaref (ok)
3) make openssl (ok)
4) configure mod_ssl with apache [--with-eapi-only] (ok)
5) configure apache (eapi rule - shared=max module=all) (ok)
6) Config modssl with apxs / rsa / openssl (ok)
7) make and install mod_ssl (ok)
8) Add libssl.so mod to apache and update conf file (ok)

$ /usr/local/apache/sbin/apachectl testconfig

>> Cannot load /usr/local/apache/libexec/libssl.so into server: /usr/local/apache/libexec/libssl.so: undefined symbol: ERR_load_RSAREF_string

-------

I am absolutely clueless, and new to unix.

-- My OS is linux, kernel is 2.2.12-32

any help would be much -much- appreciated.

Thanks,

-m.

Anon
02-10-2001, 08:57 PM
Hi,

Just wanted to update those interested that I managed to fix the problem.

mod_ssl's Makefile did not include some extensions infront of SSL_LIB.

-lRSAglue -L/pathto/rsa/srouce /-lrsaref

After I put those in and remade libssl.so, Apache had no problems bringing up the generated certificate and running with the rsa linked files.

I hope this helps someone :)

-m.

edwardsbc
02-13-2001, 05:00 PM
It is always nice when someone documents the solution as well as the problem. Thanks!