Re: Cannot load modules/mod_ssl.so into server: ld.so.1: symbol SRP_VBASE_new: referenced symbol not found

2014-01-09 Thread Dr. Stephen Henson
On Thu, Jan 09, 2014, Abdul Anshad wrote:

 Hello All,
 
 I have a set up in which i have installed OpenSSL-1.0.0l and httpd-2.4.7.
 
 httpd-2.4.7 was compiled against OpenSSL-1.0.1e.
 
 Now, when i try to start httpd-2.4.7 with mod_ssl enabled ( OpenSSL
 installed version is 1.0.0l ) it throws the following error.
 
 Cannot load modules/mod_ssl.so into server: ld.so.1: Cannot load
 modules/mod_ssl.so into server: ld.so.1:   symbol SRP_VBASE_new:
 referenced symbol not found.
 
 But, when i install OpenSLL-1.0.1 series, it works fine.
 

That's to be expected. The OpenSSL 1.0.1 branch implements some features not
in OpenSSL 1.0.0. In this case it's SRP.

Steve.
--
Dr Stephen N. Henson. OpenSSL project core developer.
Commercial tech support now available see: http://www.openssl.org
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Cannot load modules/mod_ssl.so into server: ld.so.1: symbol SRP_VBASE_new: referenced symbol not found

2014-01-08 Thread Abdul Anshad

Hello All,

I have a set up in which i have installed OpenSSL-1.0.0l and httpd-2.4.7.

httpd-2.4.7 was compiled against OpenSSL-1.0.1e.

Now, when i try to start httpd-2.4.7 with mod_ssl enabled ( OpenSSL 
installed version is 1.0.0l ) it throws the following error.


Cannot load modules/mod_ssl.so into server: ld.so.1: Cannot load 
modules/mod_ssl.so into server: ld.so.1:   symbol SRP_VBASE_new: 
referenced symbol not found.


But, when i install OpenSLL-1.0.1 series, it works fine.

--
Regards,
Abdul

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


ld.so.1

2006-02-27 Thread John Doe
Hi,  Does somebody has an idea about the following error message.ld.so.1: /usr/local/ssl/bin/openssl: fatal: libssl.so.0.9.7: open failed: No such file or directoryI don't understand 'cause openssl is correctly installed and my $PATH and  $LD-LIBRARY_PATH seem to be correct.HOST:user1% echo $PATH/opt/VRTSvmsa/bin:/etc/vx/bin:/var/opt/STORtools/bin:/var/opt/SUNWvts/bin:/opt/SUNWvts/bin:/usr/local/ssl/bin:/usr/ccs/bin:/usr/local/bin:/oracle/JOY/817_32/bin:/home/joyadm:/usr/sap/JOY/SYS/exe/run:/usr/bin:.:/usr/ccs/bin:/usr/ucb  HOST:user2% echo $LD_LIBRARY_PATH/usr/local/lib:/usr/local/ssl/libNB:  I'm a newbie so don't blame me for all the stupid things I can write and I 'm not an english native speakersothank youjs 
 
		Yahoo! Mail
Bring photos to life! New PhotoMail  makes sharing a breeze. 


Re: ld.so.1

2006-02-27 Thread Laurent Larquère




Salut,
i suppose you have installed an SMC package,
have you done a pkgchk SMCosslxx ?
do libso have execute bit set ?
what Solaris is it ?

John Doe a crit:

  Hi,
  Does somebody has an idea about the following error message.
  
  ld.so.1: /usr/local/ssl/bin/openssl: fatal: libssl.so.0.9.7:
open failed: No such file or directory
  
  I don't understand 'cause openssl is correctly installed and my
$PATH and
  $LD-LIBRARY_PATH seem to be correct.
  
  HOST:user1% echo $PATH
/opt/VRTSvmsa/bin:/etc/vx/bin:/var/opt/STORtools/bin:/var/opt/SUNWvts/bin:/opt/SUNWvts/bin:/usr/loca
l/ssl/bin:/usr/ccs/bin:/usr/local/bin:/oracle/JOY/817_32/bin:/home/joyadm:/usr/sap/JOY/SYS/exe/run:/
usr/bin:.:/usr/ccs/bin:/usr/ucb
  
HOST:user2% echo $LD_LIBRARY_PATH
/usr/local/lib:/usr/local/ssl/lib
  
  NB:
  I'm a newbie so don't blame me for all the stupid things I can
write and I 'm not an english native speakerso
  
  thank you
  
  js
  
   
  Yahoo! Mail
Bring photos to life! New
PhotoMail  makes sharing a breeze. 





Re: ld.so.1

2006-02-27 Thread Brian Candler
On Mon, Feb 27, 2006 at 07:24:56AM -0800, John Doe wrote:
ld.so.1: /usr/local/ssl/bin/openssl: fatal: libssl.so.0.9.7: open
failed: No such file or directory
 
 
 
I don't understand 'cause openssl is correctly installed and my $PATH
and
 
$LD-LIBRARY_PATH seem to be correct.

LD_LIBRARY_PATH is a bit of a frig, which is best avoided. Read 'man crle'
to see the way to add /usr/local/ssl/lib to your permanent library search
path under Solaris.

I'm not sure if Solaris has ldd, but this can be useful for troubleshooting
too: try

ldd /usr/local/ssl/bin/openssl

It might show you that libssl in turn depends on some other library which it
can't find.

Regards,

Brian.
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   [EMAIL PROTECTED]