CentOS Stream 8に firebirdをインストールする
1.firebirdをインストール
# 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を実行
# 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;