RHEL 5システムでOpenSSLバージョンをopenssl-1.0.1sにアップグレードするには?

RHEL 5システムでOpenSSLバージョンをopenssl-1.0.1sにアップグレードするには?

私の現在のopensslバージョンはですopenSSL 0.9.8e-fips-rhel5openssl-1.0.1sここでは動作しませんyum update openssl

次のパスからopensslバイナリを削除しました。

/usr/lib/openssl and /usr/bin/openssl

ソースからコンパイルしてみてください。

./config --prefix=/usr/lib/opensslただし、次のエラーが発生します。

*make[1]: Leaving directory `/root/openssl-1.0.1s/test'
Configured for linux-x86_64.
*** Because of configuration changes, you MUST do the following before
*** building:
        make depend
[root@test openssl-1.0.1s]# make depend
making depend in crypto...
make[1]: Entering directory `/root/openssl-1.0.1s/crypto'
../util/domd: line 25: gcc: command not found
make[1]: *** [local_depend] Error 1
make[1]: Leaving directory `/root/openssl-1.0.1s/crypto'
make: *** [depend] Error 1
[root@test openssl-1.0.1s]# make
making all in crypto...
make[1]: Entering directory `/root/openssl-1.0.1s/crypto'
gcc -I. -I.. -I../include  -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -O3 -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM   -c -o cryptlib.o cryptlib.c
make[1]: gcc: Command not found
make[1]: *** [cryptlib.o] Error 127
make[1]: Leaving directory `/root/openssl-1.0.1s/crypto'
make: *** [build_crypto] Error 1*

最近opensslの脆弱性(draw攻撃)が報告され、アップグレードしたいと思います。この問題を解決するのに役立ちます。

ベストアンサー1

バグ修正。 gccをインストールすることで修正されました。

おすすめ記事