0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【最新のOpenSSLに対応】OpenSSL3.4.1をソースコードからインストール

Posted at

特段ハマったことはなく、バージョンが最新の3.4.1になっただけ。そのまま素直にインストールだけした感じ。とりあえずメモ代わりに記事にする。

手順は以下の通り。

dnf install wget \
            tar \
            gcc \
            make \
            zlib \
            zlib-devel -y
            
dnf install perl-IPC-Cmd perl-Pod-Html -y
wget https://github.com/openssl/openssl/releases/download/openssl-3.4.1/openssl-3.4.1.tar.gz
tar xvfz openssl-3.4.1.tar.gz
cd openssl-3.4.1
LDFLAGS="-Wl,-rpath=/var/home/lib/openssl/lib64" \
./Configure  --prefix=/var/home/lib/openssl shared zlib
make all
(約8分かかる)
make install_sw
make install_ssldirs
mv /var/home/lib/openssl /var/home/lib/openssl3.4.1
ln -s /var/home/lib/openssl3.4.1 /var/home/lib/openssl
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?