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?

Rocky Linux 9.4にOpenSSL 3.4をインストールする(ソースからビルド)

Last updated at Posted at 2024-12-21

RockyLinux 9系では標準でOpenSSL 3系がインストールされていますが、あえて最新バージョンをソースからインストールしたい時に利用します。

環境

ソフトウェア バージョン
OS rockyLinux 9.3 or Ubunt 22.04
OS OpenSSL 3.4.0

事前準備

予め以下のPerlパッケージをインストールしておく

sudo dnf install perl-FindBin perl-IPC-Cmd perl-Pod-Html per-lib perl-File-Compare perl-File-Copy
sudo dnf install gcc make

インストール

cd /usr/local/src
wget https://github.com/openssl/openssl/releases/download/openssl-3.4.0/openssl-3.4.0.tar.gz
tar xvzf openssl-3.4.0.tar.gz
cd openssl-3.4.0
./config -fPIC --shared --prefix=/usr/local/ssl
make -j 4
make install

ライブラリのシンボリックリンクを作成

/usr/local/ssl/lib64に、ライブラリが配置されるため、一部のアプリケーションがライブラリを参照できないことがあるため、32ビットフォルダのシンボリックリンクを作成する

ln -s /usr/local/ssl/lib64 /usr/local/ssl/lib

以上で、/usr/local/sslに、OpenSSL3.3.xがインストールされます。
「--prefix」を付与しないと、/usr/local配下に直接インストールされるため、デフォルトインストールの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?