이전 OpenSSL 문제

이전 OpenSSL 문제

이전 버전의 openssl이 필요한 프로그램을 사용하는 데 문제가 있습니다. 이 프로그램은 새로운 openssl 버전으로의 업그레이드를 지원하지 않습니다.

SSL 컨텍스트 생성 오류(오류: 140A90C4: SSL 루틴: func(169): 이유(196))'

어떻게 해야 합니까?

어떤 정보가 필요합니까? 나중에 추가할 수 있어요

$pacman -Q | grep openssl
lib32-openssl-1.0 1.0.2.l-2
openssl 1.1.0.g-1
openssl-1.0 1.0.2.l-1

답변1

다음과 같은 스크립트를 실행합니다.

version=(version to install)

yum install gcc dstat -y

cd /usr/local/src

wget https://www.openssl.org/source/$version.tar.gz

tar -zxf $version.tar.gz

cd $version

./config -Wl,--enable-new-dtags,-zlib,-nossl3,-rpath,'$(LIBRPATH)'

make

make install

mv /usr/bin/openssl /root  #Or substitute where you'd like to back up the old one

ln -sf /usr/local/bin/openssl /usr/bin/openssl
#Adjusting this to whatever you get from the output of "which openssl."

관련 정보