How to check mod_ssl.so version?

Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.
apache-httpd ssl
add a comment |
I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.
apache-httpd ssl
add a comment |
I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.
apache-httpd ssl
I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.
apache-httpd ssl
apache-httpd ssl
edited Mar 10 at 4:11
Rui F Ribeiro
42k1483142
42k1483142
asked Mar 19 '15 at 13:33
user3299199user3299199
41125
41125
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
A way to do this on a linux/unix system:
# strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '
- mod_ssl/2.2.6
- OpenSSL 0.9.8f 11 Oct 2007
add a comment |
grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so
Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?
– user3299199
Mar 19 '15 at 13:42
Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.
– Bogdan
Mar 19 '15 at 13:45
In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?
– user3299199
Mar 19 '15 at 17:17
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f191213%2fhow-to-check-mod-ssl-so-version%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
A way to do this on a linux/unix system:
# strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '
- mod_ssl/2.2.6
- OpenSSL 0.9.8f 11 Oct 2007
add a comment |
A way to do this on a linux/unix system:
# strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '
- mod_ssl/2.2.6
- OpenSSL 0.9.8f 11 Oct 2007
add a comment |
A way to do this on a linux/unix system:
# strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '
- mod_ssl/2.2.6
- OpenSSL 0.9.8f 11 Oct 2007
A way to do this on a linux/unix system:
# strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '
- mod_ssl/2.2.6
- OpenSSL 0.9.8f 11 Oct 2007
edited Jan 26 '17 at 8:15
jasonwryan
50.8k14135190
50.8k14135190
answered Jan 26 '17 at 7:59
Tom VTom V
312
312
add a comment |
add a comment |
grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so
Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?
– user3299199
Mar 19 '15 at 13:42
Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.
– Bogdan
Mar 19 '15 at 13:45
In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?
– user3299199
Mar 19 '15 at 17:17
add a comment |
grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so
Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?
– user3299199
Mar 19 '15 at 13:42
Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.
– Bogdan
Mar 19 '15 at 13:45
In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?
– user3299199
Mar 19 '15 at 17:17
add a comment |
grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so
grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so
answered Mar 19 '15 at 13:37
BogdanBogdan
7311512
7311512
Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?
– user3299199
Mar 19 '15 at 13:42
Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.
– Bogdan
Mar 19 '15 at 13:45
In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?
– user3299199
Mar 19 '15 at 17:17
add a comment |
Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?
– user3299199
Mar 19 '15 at 13:42
Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.
– Bogdan
Mar 19 '15 at 13:45
In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?
– user3299199
Mar 19 '15 at 17:17
Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?
– user3299199
Mar 19 '15 at 13:42
Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?
– user3299199
Mar 19 '15 at 13:42
Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.
– Bogdan
Mar 19 '15 at 13:45
Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.
– Bogdan
Mar 19 '15 at 13:45
In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?
– user3299199
Mar 19 '15 at 17:17
In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?
– user3299199
Mar 19 '15 at 17:17
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f191213%2fhow-to-check-mod-ssl-so-version%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