CentOS Stream 8に firebirdをインストールする

1.firebirdをインストール

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# dnf install firebird
インストール済み:
firebird-4.0.0.2496-2.el8.x86_64 firebird-utils-4.0.0.2496-2.el8.x86_64
libfbclient2-4.0.0.2496-2.el8.x86_64 libib-util-4.0.0.2496-2.el8.x86_64
libtomcrypt-1.18.2-5.el8.x86_64 libtommath-1.1.0-1.el8.x86_64
完了しました!
# dnf install firebird 略 インストール済み: firebird-4.0.0.2496-2.el8.x86_64 firebird-utils-4.0.0.2496-2.el8.x86_64 libfbclient2-4.0.0.2496-2.el8.x86_64 libib-util-4.0.0.2496-2.el8.x86_64 libtomcrypt-1.18.2-5.el8.x86_64 libtommath-1.1.0-1.el8.x86_64 完了しました!
# dnf install firebird
略
インストール済み:
  firebird-4.0.0.2496-2.el8.x86_64      firebird-utils-4.0.0.2496-2.el8.x86_64
  libfbclient2-4.0.0.2496-2.el8.x86_64  libib-util-4.0.0.2496-2.el8.x86_64
  libtomcrypt-1.18.2-5.el8.x86_64       libtommath-1.1.0-1.el8.x86_64

完了しました!

2. firebirdを実行

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# isql-fb
Use CONNECT or CREATE DATABASE to specify a database
データベースを作成
SQL> create database 'arkgame.fdb';
データベースを確認
SQL> show database;
Database: arkgame.fdb
Owner: SYSDBA
PAGE_SIZE 8192
Number of DB pages allocated = 224
Number of DB pages used = 216
Number of DB pages free = 8
Sweep interval = 20000
Forced Writes are ON
Transaction - oldest = 1
Transaction - oldest active = 2
Transaction - oldest snapshot = 2
Transaction - Next = 5
ODS = 13.0
Database not encrypted
Default Character set: NONE
SQL> quit;
# isql-fb Use CONNECT or CREATE DATABASE to specify a database データベースを作成 SQL> create database 'arkgame.fdb'; データベースを確認 SQL> show database; Database: arkgame.fdb Owner: SYSDBA PAGE_SIZE 8192 Number of DB pages allocated = 224 Number of DB pages used = 216 Number of DB pages free = 8 Sweep interval = 20000 Forced Writes are ON Transaction - oldest = 1 Transaction - oldest active = 2 Transaction - oldest snapshot = 2 Transaction - Next = 5 ODS = 13.0 Database not encrypted Default Character set: NONE SQL> quit;
# isql-fb
Use CONNECT or CREATE DATABASE to specify a database

データベースを作成
SQL> create database 'arkgame.fdb';

データベースを確認
SQL> show database;
Database: arkgame.fdb
        Owner: SYSDBA
PAGE_SIZE 8192
Number of DB pages allocated = 224
Number of DB pages used = 216
Number of DB pages free = 8
Sweep interval = 20000
Forced Writes are ON
Transaction - oldest = 1
Transaction - oldest active = 2
Transaction - oldest snapshot = 2
Transaction - Next = 5
ODS = 13.0
Database not encrypted
Default Character set: NONE
SQL> quit;

 

CentOS Stream 8

Posted by arkgame