CentOs8 firebirdをインストールする手順

CentOs8 firebirdをインストールする手順

オープンソースのDB「firebird」をcentos8にインストールする手順を記述してます。

環境

  • OS  CentOS Linux release 8.0.1905 (Core)

リポジトリ追加

epelを追加します。

sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

firebirdインストール

下記のコマンドでインストールします。

sudo dnf install firebird

firebird実行

インストールが完了したので実行してみます。

isql-fb

## DB作成
SQL> create database 'mebee.fdb';

## 作成したDBを確認します
SQL> show database;
Database: mebee.fdb
        Owner: TESTUSER
PAGE_SIZE 8192
Number of DB pages allocated = 180
Number of DB pages used = 176
Number of DB pages free = 4
Sweep interval = 20000
Forced Writes are ON
Transaction - oldest = 1
Transaction - oldest active = 2
Transaction - oldest snapshot = 2
Transaction - Next = 5
ODS = 12.0
Database not encrypted
Default Character set: NONE

構成ファイルは下記となります。

sudo nano /etc/firebird/firebird.conf