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;
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
add a comment |
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
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
add a comment |
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
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
apache-2.4 openssl mod-ssl
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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 :)
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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 :)
add a comment |
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 :)
add a comment |
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 :)
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 :)
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
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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