0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

BerkeleyDB 5.xをインストールする(ソースからコンパイル) for CentOS8

Posted at

また、PostfixやBINDでも利用されるBerkeleyDB。
CentOS8においては、BereleyDB5.3.28が利用されている。
角に新しいバージョンを入れると、RPMの管理データーベースの読み取りなどに影響が出るため、なるべくOSのバージョンと合わせることが望ましい。

あらかじめブラウザーで以下のバイナリをダウンロードする

https://download.oracle.com/otn/berkeley-db/db-5.3.28.tar.gz

/usr/local/srcにファイルをコピーします。
その後コンパオイルとインストール作業を行います。

cd /usr/local/src
tar xvzf db-5.3.28.tar.gz
cd db-5.3.28/build\unix
../dist/configure
make
make install

以上で、完了です。

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?