Apache2.4.25 using system default openssl instead of new version provided during compilationCompiling Apache mod_ssl for different target hardware (hardware capability unsupported SSE2 error)How to get httrack to work with SSL on mac os x? (libssl.so not found)Can't get Apache 2.2.21 to compile with OpenSSL supportCompile apache 2.2.23 on Ubuntu 12.04.1 LTS with openssl errorServer still vulnerable to HeartBleed after Openssl updateHow to make openssl s_client using default CANginx reverting to sslv3Building curl, httpd and others with custom openssl build, while avoiding default system opensslApache 2.4 using default DocumentRoot instead of VirtualHost DocumentRootapache 2.4.37 does not link openssl directly using shared mod_ssl.so

Multi tool use
Multi tool use

Would a two-seat light aircaft with a landing speed of 20 knots and a top speed of 180 knots be technically possible?

How to get cool night-vision without lame drawbacks?

Do equal angles necessarily mean a polygon is regular?

How precise do models need to be for 3d printing?

Is my Rep in Stack-Exchange Form?

A player is constantly pestering me about rules, what do I do as a DM?

What sort of mathematical problems are there in AI that people are working on?

Change the boot order with no option in UEFI settings

Why would people reject a god's purely beneficial blessing?

Why is Madam Hooch not a professor?

Inverse-quotes-quine

Peace Arch without exiting USA

Importance of the principal bundle in Chern-Simons theory

How well known and how commonly used was Huffman coding in 1979?

How come I was asked by a CBP officer why I was in the US?

Why doesn't a marching band have strings?

Why does the numerical solution of an ODE move away from an unstable equilibrium?

Why is there no havdallah when going from Yom Tov into Shabbat?

Does squid ink pasta bleed?

How to split an equation over two lines?

Hot coffee brewing solutions for deep woods camping

How can I repair scratches on a painted French door?

Why do some games show lights shine through walls?

Require advice on power conservation for backpacking trip



Apache2.4.25 using system default openssl instead of new version provided during compilation


Compiling Apache mod_ssl for different target hardware (hardware capability unsupported SSE2 error)How to get httrack to work with SSL on mac os x? (libssl.so not found)Can't get Apache 2.2.21 to compile with OpenSSL supportCompile apache 2.2.23 on Ubuntu 12.04.1 LTS with openssl errorServer still vulnerable to HeartBleed after Openssl updateHow to make openssl s_client using default CANginx reverting to sslv3Building curl, httpd and others with custom openssl build, while avoiding default system opensslApache 2.4 using default DocumentRoot instead of VirtualHost DocumentRootapache 2.4.37 does not link openssl directly using shared mod_ssl.so






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Trying to compile apache2.4.25 from source on Fedora 15 with dynamically linked mod_ssl. Fedora15 server has a default openssl version (OpenSSL 1.0.0j-fips 10 May 2012) and newer openssl library (OpenSSL 1.0.2g 1 Mar 2016) is installed in /usr/local/ssl/bin.



Compilation steps



./configure --enable-ssl=shared --with-ssl=/usr/local/ssl/lib --with-pcre=/usr/local/pcre/lib/pcre-config

make
make install


After installation, shared library is still pointing to older openssl version



ldd /usr/local/apache2/modules/mod_ssl.so
libssl.so.10 => /usr/lib64/libssl.so.10 (0x00007fb715087000)

ls -lrt /usr/lib64/libssl.so.10
lrwxrwxrwx 1 root root 16 Jun 2 14:43 /usr/lib64/libssl.so.10 -> libssl.so.1.0.0j


libssl.s0.10 has a sym link to system default openssl version.
Tried compiling without specific custom path to openssl library and still the same results with libssl.so still pointing to system openssl version.



Even tried setting the LD_LIBRARY_PATH env variable to point to new openssl lib path, yet no luck.










share|improve this question
























  • if your dir with the new libs is /mynewlibs and it contains four libs: libssl.so -> libssl.so.10, libssl.so.10, libcrypto.so -> libcrypto.so.10, libcrypto.so.10,then after invoking in the same shell export LD_LIBRARY_PATH=/mynewlibs/ you will have your ldd output pointed top the right libs

    – Oleg
    Jun 3 '17 at 12:55


















1















Trying to compile apache2.4.25 from source on Fedora 15 with dynamically linked mod_ssl. Fedora15 server has a default openssl version (OpenSSL 1.0.0j-fips 10 May 2012) and newer openssl library (OpenSSL 1.0.2g 1 Mar 2016) is installed in /usr/local/ssl/bin.



Compilation steps



./configure --enable-ssl=shared --with-ssl=/usr/local/ssl/lib --with-pcre=/usr/local/pcre/lib/pcre-config

make
make install


After installation, shared library is still pointing to older openssl version



ldd /usr/local/apache2/modules/mod_ssl.so
libssl.so.10 => /usr/lib64/libssl.so.10 (0x00007fb715087000)

ls -lrt /usr/lib64/libssl.so.10
lrwxrwxrwx 1 root root 16 Jun 2 14:43 /usr/lib64/libssl.so.10 -> libssl.so.1.0.0j


libssl.s0.10 has a sym link to system default openssl version.
Tried compiling without specific custom path to openssl library and still the same results with libssl.so still pointing to system openssl version.



Even tried setting the LD_LIBRARY_PATH env variable to point to new openssl lib path, yet no luck.










share|improve this question
























  • if your dir with the new libs is /mynewlibs and it contains four libs: libssl.so -> libssl.so.10, libssl.so.10, libcrypto.so -> libcrypto.so.10, libcrypto.so.10,then after invoking in the same shell export LD_LIBRARY_PATH=/mynewlibs/ you will have your ldd output pointed top the right libs

    – Oleg
    Jun 3 '17 at 12:55














1












1








1


2






Trying to compile apache2.4.25 from source on Fedora 15 with dynamically linked mod_ssl. Fedora15 server has a default openssl version (OpenSSL 1.0.0j-fips 10 May 2012) and newer openssl library (OpenSSL 1.0.2g 1 Mar 2016) is installed in /usr/local/ssl/bin.



Compilation steps



./configure --enable-ssl=shared --with-ssl=/usr/local/ssl/lib --with-pcre=/usr/local/pcre/lib/pcre-config

make
make install


After installation, shared library is still pointing to older openssl version



ldd /usr/local/apache2/modules/mod_ssl.so
libssl.so.10 => /usr/lib64/libssl.so.10 (0x00007fb715087000)

ls -lrt /usr/lib64/libssl.so.10
lrwxrwxrwx 1 root root 16 Jun 2 14:43 /usr/lib64/libssl.so.10 -> libssl.so.1.0.0j


libssl.s0.10 has a sym link to system default openssl version.
Tried compiling without specific custom path to openssl library and still the same results with libssl.so still pointing to system openssl version.



Even tried setting the LD_LIBRARY_PATH env variable to point to new openssl lib path, yet no luck.










share|improve this question
















Trying to compile apache2.4.25 from source on Fedora 15 with dynamically linked mod_ssl. Fedora15 server has a default openssl version (OpenSSL 1.0.0j-fips 10 May 2012) and newer openssl library (OpenSSL 1.0.2g 1 Mar 2016) is installed in /usr/local/ssl/bin.



Compilation steps



./configure --enable-ssl=shared --with-ssl=/usr/local/ssl/lib --with-pcre=/usr/local/pcre/lib/pcre-config

make
make install


After installation, shared library is still pointing to older openssl version



ldd /usr/local/apache2/modules/mod_ssl.so
libssl.so.10 => /usr/lib64/libssl.so.10 (0x00007fb715087000)

ls -lrt /usr/lib64/libssl.so.10
lrwxrwxrwx 1 root root 16 Jun 2 14:43 /usr/lib64/libssl.so.10 -> libssl.so.1.0.0j


libssl.s0.10 has a sym link to system default openssl version.
Tried compiling without specific custom path to openssl library and still the same results with libssl.so still pointing to system openssl version.



Even tried setting the LD_LIBRARY_PATH env variable to point to new openssl lib path, yet no luck.







apache-2.4 openssl mod-ssl






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 3 '17 at 4:15









Esa Jokinen

25k2 gold badges36 silver badges62 bronze badges




25k2 gold badges36 silver badges62 bronze badges










asked Jun 3 '17 at 3:52









user2839891user2839891

163 bronze badges




163 bronze badges












  • if your dir with the new libs is /mynewlibs and it contains four libs: libssl.so -> libssl.so.10, libssl.so.10, libcrypto.so -> libcrypto.so.10, libcrypto.so.10,then after invoking in the same shell export LD_LIBRARY_PATH=/mynewlibs/ you will have your ldd output pointed top the right libs

    – Oleg
    Jun 3 '17 at 12:55


















  • if your dir with the new libs is /mynewlibs and it contains four libs: libssl.so -> libssl.so.10, libssl.so.10, libcrypto.so -> libcrypto.so.10, libcrypto.so.10,then after invoking in the same shell export LD_LIBRARY_PATH=/mynewlibs/ you will have your ldd output pointed top the right libs

    – Oleg
    Jun 3 '17 at 12:55

















if your dir with the new libs is /mynewlibs and it contains four libs: libssl.so -> libssl.so.10, libssl.so.10, libcrypto.so -> libcrypto.so.10, libcrypto.so.10,then after invoking in the same shell export LD_LIBRARY_PATH=/mynewlibs/ you will have your ldd output pointed top the right libs

– Oleg
Jun 3 '17 at 12:55






if your dir with the new libs is /mynewlibs and it contains four libs: libssl.so -> libssl.so.10, libssl.so.10, libcrypto.so -> libcrypto.so.10, libcrypto.so.10,then after invoking in the same shell export LD_LIBRARY_PATH=/mynewlibs/ you will have your ldd output pointed top the right libs

– Oleg
Jun 3 '17 at 12:55











1 Answer
1






active

oldest

votes


















1














Solved this issue by deleting the old OpenSSL library(_libssl.so.10_) and recompiling with the latest OpenSSL library.



Once this was installed, copied the older _libssl.so_ file back to the directory it was initially in. This has solved the issue for now, but not recommended on a production server :)






share|improve this answer



























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "2"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f853761%2fapache2-4-25-using-system-default-openssl-instead-of-new-version-provided-during%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Solved this issue by deleting the old OpenSSL library(_libssl.so.10_) and recompiling with the latest OpenSSL library.



    Once this was installed, copied the older _libssl.so_ file back to the directory it was initially in. This has solved the issue for now, but not recommended on a production server :)






    share|improve this answer





























      1














      Solved this issue by deleting the old OpenSSL library(_libssl.so.10_) and recompiling with the latest OpenSSL library.



      Once this was installed, copied the older _libssl.so_ file back to the directory it was initially in. This has solved the issue for now, but not recommended on a production server :)






      share|improve this answer



























        1












        1








        1







        Solved this issue by deleting the old OpenSSL library(_libssl.so.10_) and recompiling with the latest OpenSSL library.



        Once this was installed, copied the older _libssl.so_ file back to the directory it was initially in. This has solved the issue for now, but not recommended on a production server :)






        share|improve this answer















        Solved this issue by deleting the old OpenSSL library(_libssl.so.10_) and recompiling with the latest OpenSSL library.



        Once this was installed, copied the older _libssl.so_ file back to the directory it was initially in. This has solved the issue for now, but not recommended on a production server :)







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jun 7 at 16:31









        Chaminda Bandara

        3305 silver badges16 bronze badges




        3305 silver badges16 bronze badges










        answered Jun 5 '17 at 19:10









        user2839891user2839891

        163 bronze badges




        163 bronze badges



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Server Fault!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f853761%2fapache2-4-25-using-system-default-openssl-instead-of-new-version-provided-during%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            xVxmr,IFDl9i AMofhM1s52gtBWnGag,BVw,r
            VZNl2xr0KvDj3NzTLmkimsEP

            Popular posts from this blog

            RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

            Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020