2023. 8. 18. 18:15 WorkHolic
OpenSSL 1.1.1 / CentOS 6
728x90
반응형
Is there a way to install openssl 1.1.1 or later on centOS 6?
https://github.com/openssl/openssl/issues/19750
Using centOS 6 (i know..eol, but I can't switch or upgrade quite yet.). If relevant, please remember to tell us in what OpenSSL version you found the issue. Trying to install OpenSSL 1.1.1s by compiling from source Downloaded the openssl source code from openss.org (openssl-1.1.1s.tar.gz) to /usr/src/openssl-1.1.1s.tar.gz Then I unzipped it to to /usr/src/openssl-1.1.1s Then I cd'ed into /usr/src/openssl-1.1.1s issued the following commands ./openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory So, how can I get this to work? Any help is appreciated. Thank you! |
Do NOT replace the system openssl library, you will certainly break your system. The system applications built against the 1.0.1e version will not run with 1.1.1. However, you can install the new version of openssl in /usr/local as you did. You might need to run ldconfig or configure the /usr/local/lib64 in /etc/ld.so.conf if the shared library loader cannot find the libcrypto.so.1.1 and libssl.so.1.1 placed there. |
👍1
t8m added triaged: question resolved: answered labels on Nov 24, 2022
Thank you. Can you please tell me what to do with ldconfig or what to put in /etc/ld.so.conf? I certainly would appreciate it. |
You just put a line with /usr/local/lib64 in /etc/ld.so.conf and run ldconfig as root. |
So this will not replace anything, but include that path, right? On Nov 28, 2022, at 10:40 AM, Tomáš Mráz ***@***.***> wrote: You just put a line with /usr/local/lib64 in /etc/ld.so.conf and run ldconfig as root. —Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Yes |
Thank you so much! That worked! Lifesaver you! |
Tomas, you rock. Thank you! That worked! Martin
|
728x90
SMALL
'WorkHolic' 카테고리의 다른 글
CentOS 8 php-imap 문제 (0) | 2023.10.26 |
---|---|
MySQL: Fastest way to count number of rows 데이터의 수량을 빨르게 확인하는 방법 (0) | 2023.09.23 |
PHP 클라이언트 아이피가 일치할 경우에만 프로그램 실행 (2) | 2023.08.12 |
2023.07.20 [한국인터넷진흥원] 텔레그램 메신저 업데이트 사칭 메시지를 통한 피싱 주의 권고 (0) | 2023.07.20 |
Linux 파일 내용 찾아 모두 바꾸기 (0) | 2023.02.25 |