以前の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."

おすすめ記事