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

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







            Popular posts from this blog

            How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

            What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

            Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos