You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Pietro Pesce <mi...@gmail.com> on 2018/02/07 09:44:11 UTC

[users@httpd] symbol SSLv2_client_method

hello

i have a solaris zone whit apache:

# /app/apache/bin/httpd -version
Server version: Apache/2.0.59
Server built:   Jun 18 2007 14:27:08

when a try to start receive this error:

yntax error on line 32 of /app/apache/conf/httpd.conf:
Cannot load /app/apache/modules/mod_ssl.so into server: ld.so.1: httpd:
fatal: relocation error: file /app/apache/modules/mod_ssl.so: symbol
SSLv2_client_method: referenced symbol not found

# ldd /app/apache/modules/mod_ssl.so
        libc.so.1 =>     /lib/libc.so.1
        libgcc_s.so.1 =>         /usr/sfw/lib/libgcc_s.so.1
        libm.so.2 =>     /lib/libm.so.2
        /lib/libm/libm_hwcap1.so.2
        /platform/sun4v/lib/libc_psr.so.1

ldd /lib/libc.so.1
        libm.so.2 =>     /lib/libm.so.2
        /lib/libm/libm_hwcap1.so.2
        /platform/sun4v/lib/libc_psr.so.1


can help please?

tnx

Re: [users@httpd] symbol SSLv2_client_method

Posted by Rainer Jung <ra...@kippdata.de>.
Am 07.02.2018 um 11:03 schrieb Stefan Eissing:
> Your openssl is not the version that your apache was compiled
> against. If you updated it, you need to also re-compile
> any executables that link it.
> 
> Note that running SSL without staying on current software
> versions is highly discouraged. For example, Apache does
> not support versions 2.0 or 2.2 any longer.

In addition it is also possible that you ran into a temporary 
incompatibility in OpenSSL 1.0.2g and 1.0.1s. The symbol 
SSLv2_client_method was accidentally removed when sslv2 support was 
removed. To stay API compatible, it should have been replaced by a dummy 
impl that simply returns NULL.

This was corrected in 1.0.2h and 1.0.1t, so if are using the buggy 
versions, any minor patch update should be fine.

The simple commits were:

https://github.com/openssl/openssl/commit/133138569f37d149ed1d7641fe8c75a93fded445

(for 1.0.2) and

https://github.com/openssl/openssl/commit/5bac9d44e712bc4acfbdd156244fca4486285ec9

(for 1.0.1).

Regards,

Rainer

>> Am 07.02.2018 um 10:44 schrieb Pietro Pesce <mi...@gmail.com>:
>>
>> hello
>>
>> i have a solaris zone whit apache:
>>
>> # /app/apache/bin/httpd -version
>> Server version: Apache/2.0.59
>> Server built:   Jun 18 2007 14:27:08
>>
>> when a try to start receive this error:
>>
>> yntax error on line 32 of /app/apache/conf/httpd.conf:
>> Cannot load /app/apache/modules/mod_ssl.so into server: ld.so.1: httpd: fatal: relocation error: file /app/apache/modules/mod_ssl.so: symbol SSLv2_client_method: referenced symbol not found
>>
>> # ldd /app/apache/modules/mod_ssl.so
>>          libc.so.1 =>     /lib/libc.so.1
>>          libgcc_s.so.1 =>         /usr/sfw/lib/libgcc_s.so.1
>>          libm.so.2 =>     /lib/libm.so.2
>>          /lib/libm/libm_hwcap1.so.2
>>          /platform/sun4v/lib/libc_psr.so.1
>>
>> ldd /lib/libc.so.1
>>          libm.so.2 =>     /lib/libm.so.2
>>          /lib/libm/libm_hwcap1.so.2
>>          /platform/sun4v/lib/libc_psr.so.1
>>
>>
>> can help please?
>>
>> tnx
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 
> 

-- 
kippdata
informationstechnologie GmbH   Tel: 0228 98549 -0
Bornheimer Str. 33a            Fax: 0228 98549 -50
53111 Bonn                     www.kippdata.de

HRB 8018 Amtsgericht Bonn / USt.-IdNr. DE 196 457 417
Geschäftsführer: Dr. Thomas Höfer, Rainer Jung, Sven Maurmann

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] symbol SSLv2_client_method

Posted by Stefan Eissing <st...@greenbytes.de>.
No, because I do not have it. Afraid, you need to hunt on the internet yourself.

> Am 07.02.2018 um 11:05 schrieb Pietro Pesce <mi...@gmail.com>:
> 
> hello
> 
> tnx for the response, you can give me the procedure?
> 
> pls
> 
> 2018-02-07 11:03 GMT+01:00 Stefan Eissing <st...@greenbytes.de>:
> Your openssl is not the version that your apache was compiled
> against. If you updated it, you need to also re-compile
> any executables that link it.
> 
> Note that running SSL without staying on current software
> versions is highly discouraged. For example, Apache does
> not support versions 2.0 or 2.2 any longer.
> 
> -Stefan
> 
> > Am 07.02.2018 um 10:44 schrieb Pietro Pesce <mi...@gmail.com>:
> >
> > hello
> >
> > i have a solaris zone whit apache:
> >
> > # /app/apache/bin/httpd -version
> > Server version: Apache/2.0.59
> > Server built:   Jun 18 2007 14:27:08
> >
> > when a try to start receive this error:
> >
> > yntax error on line 32 of /app/apache/conf/httpd.conf:
> > Cannot load /app/apache/modules/mod_ssl.so into server: ld.so.1: httpd: fatal: relocation error: file /app/apache/modules/mod_ssl.so: symbol SSLv2_client_method: referenced symbol not found
> >
> > # ldd /app/apache/modules/mod_ssl.so
> >         libc.so.1 =>     /lib/libc.so.1
> >         libgcc_s.so.1 =>         /usr/sfw/lib/libgcc_s.so.1
> >         libm.so.2 =>     /lib/libm.so.2
> >         /lib/libm/libm_hwcap1.so.2
> >         /platform/sun4v/lib/libc_psr.so.1
> >
> > ldd /lib/libc.so.1
> >         libm.so.2 =>     /lib/libm.so.2
> >         /lib/libm/libm_hwcap1.so.2
> >         /platform/sun4v/lib/libc_psr.so.1
> >
> >
> > can help please?
> >
> > tnx
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] symbol SSLv2_client_method

Posted by Pietro Pesce <mi...@gmail.com>.
hello

tnx for the response, you can give me the procedure?

pls

2018-02-07 11:03 GMT+01:00 Stefan Eissing <st...@greenbytes.de>:

> Your openssl is not the version that your apache was compiled
> against. If you updated it, you need to also re-compile
> any executables that link it.
>
> Note that running SSL without staying on current software
> versions is highly discouraged. For example, Apache does
> not support versions 2.0 or 2.2 any longer.
>
> -Stefan
>
> > Am 07.02.2018 um 10:44 schrieb Pietro Pesce <mi...@gmail.com>:
> >
> > hello
> >
> > i have a solaris zone whit apache:
> >
> > # /app/apache/bin/httpd -version
> > Server version: Apache/2.0.59
> > Server built:   Jun 18 2007 14:27:08
> >
> > when a try to start receive this error:
> >
> > yntax error on line 32 of /app/apache/conf/httpd.conf:
> > Cannot load /app/apache/modules/mod_ssl.so into server: ld.so.1: httpd:
> fatal: relocation error: file /app/apache/modules/mod_ssl.so: symbol
> SSLv2_client_method: referenced symbol not found
> >
> > # ldd /app/apache/modules/mod_ssl.so
> >         libc.so.1 =>     /lib/libc.so.1
> >         libgcc_s.so.1 =>         /usr/sfw/lib/libgcc_s.so.1
> >         libm.so.2 =>     /lib/libm.so.2
> >         /lib/libm/libm_hwcap1.so.2
> >         /platform/sun4v/lib/libc_psr.so.1
> >
> > ldd /lib/libc.so.1
> >         libm.so.2 =>     /lib/libm.so.2
> >         /lib/libm/libm_hwcap1.so.2
> >         /platform/sun4v/lib/libc_psr.so.1
> >
> >
> > can help please?
> >
> > tnx
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

Re: [users@httpd] symbol SSLv2_client_method

Posted by Stefan Eissing <st...@greenbytes.de>.
Your openssl is not the version that your apache was compiled
against. If you updated it, you need to also re-compile
any executables that link it.

Note that running SSL without staying on current software
versions is highly discouraged. For example, Apache does
not support versions 2.0 or 2.2 any longer.

-Stefan

> Am 07.02.2018 um 10:44 schrieb Pietro Pesce <mi...@gmail.com>:
> 
> hello
> 
> i have a solaris zone whit apache:
> 
> # /app/apache/bin/httpd -version
> Server version: Apache/2.0.59
> Server built:   Jun 18 2007 14:27:08
> 
> when a try to start receive this error:
> 
> yntax error on line 32 of /app/apache/conf/httpd.conf:
> Cannot load /app/apache/modules/mod_ssl.so into server: ld.so.1: httpd: fatal: relocation error: file /app/apache/modules/mod_ssl.so: symbol SSLv2_client_method: referenced symbol not found
> 
> # ldd /app/apache/modules/mod_ssl.so 
>         libc.so.1 =>     /lib/libc.so.1
>         libgcc_s.so.1 =>         /usr/sfw/lib/libgcc_s.so.1
>         libm.so.2 =>     /lib/libm.so.2
>         /lib/libm/libm_hwcap1.so.2
>         /platform/sun4v/lib/libc_psr.so.1
> 
> ldd /lib/libc.so.1
>         libm.so.2 =>     /lib/libm.so.2
>         /lib/libm/libm_hwcap1.so.2
>         /platform/sun4v/lib/libc_psr.so.1
> 
> 
> can help please?
> 
> tnx


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org