在Ubuntu 7.10上安装Firebird 2.0.3数据库服务器
本教程将介绍如何在Ubuntu 7.10服务器上安装Firebird数据库服务器 (2.0.3版)。
第1步 。 准备一个漂亮的Ubuntu服务器:在“youcl”上搜索“The Perfect Setup - Ubuntu”,并按照您决定继续操作的操作系统版本执行步骤。
第2步.进行libstdc ++ 5安装(在安装Firebird之前)
user@machine:~# sudo apt-get install libstdc++5
第3步.从http://firebirdsql.org (下载)或源强力下载并扩展Firebird安装工具包:2.0.3 NTPL超级服务器。
- 对于32位操作系统:
user@machine:~# sudo wget http://downloads.sourceforge.net/firebird/FirebirdSS-2.0.3.12981-1.nptl.i686.tar.gz
user@machine:~# sudo tar -xvf FirebirdSS-2.0.3.12981-1.nptl.i686.tar.gz
user@machine:~# cd cd FirebirdSS-2.0.3.12981-1.i686
- 对于64位操作系统:
user@machine:~# sudo wget http://downloads.sourceforge.net/firebird/FirebirdSS-2.0.3.12981-1.amd64.tar.gz
user@machine:~# sudo tar -xvf FirebirdSS-2.0.3.12981-1.amd64.tar.gz
user@machine:~# cd FirebirdSS-2.0.3.12981-1.amd64
(备注:默认为64位操作系统为NTPL)
第4步.安装Firebird。
- user@machine:~# sudo ./install.sh
(注:安装脚本会提示你两次SYSDBA密码
第5步.做一些UDF的家务
- 如果你有UDF,请(sudo)把它们放在/ opt / firebird / UDF /
文件夹中。 当然UDF必须根据操作系统版本进行编译....
- 更改UDF文件夹的权限:
user@machine:~# sudo chown root:root /opt/firebird/UDF/*
user@machine:~# sudo chmod 444 /opt/firebird/UDF/*
- 并重新启动firebird:
user@machine:~# sudo /etc/init.d/firebird reload
可选第6步.移动数据:
- 在旧机器上进行备份:
<put path (include ending slash at the end) to gbak here>gbak -b -t -v -USER SYSDBA -PASS <put SYSDBA password here> <put path and name of the database here> <put path and name of the backup file here>
- 在新机器上创建新数据库:
user@machine:~# sudo mkdir <put path to the database location here>
- 并给Firebird所需的权利:
user@machine:~# sudo chown firebird:firebird <put path to the database (include ending slash at the end) location here>
- 将备份文件从旧设备移动到<put路径中的数据库(包括结尾的斜杠)位置>文件夹并恢复数据:
<put path (include ending slash at the end) to gbak here>gbak -c -v -t -USER
SYSDBA -PASS <put SYSDBA password here> <put path and name of the backup file here> <put path and name of the database here>
请享用。