今天我們要向大家介紹的是ubuntu 9.04 安裝Oracle10g xe 實際步驟,一般人在對ubuntu 9.04 安裝Oracle10g xe 都會覺得很“暈”,其實你如果對其的實際操作步驟有所了解的話,你就會覺得很簡單了
以前我們在開發環境中經常使用的是Oracle的輕量級的服務器Oracle xe。是在Windows下,是適合Oracle10g環境。
在linux上安裝Oracle是一件痛苦的事情。因為需要為安裝做很多准備工作。另外,就是Oracle的安裝都是基於redhat版本的。ubuntu server是很好的Linux服務器版本,但是得到的企業支持較少,比如Oracle,比如其他軟件提供商。
公司需要移植以前Oracle數據庫的東西出來。為了應急,在ubuntu server上安裝一個express edition(XE)。這個版本在ubuntu上安裝十分容易。但是事後發現,導入utf8編碼的Oracle數據庫備份時出現亂碼。究其原因,是:
引用
Western European
The database created using a single-byte Latin1 (WE8MSWIN1252) character set, which is suitable for storing Western European language data
Universal
The database is created using a multibyte (AL32UTF8) character set, which is suitable for global data in any language.
之前安裝的是只支持西方字符集的版本。參考相關的文檔,是最全面下面列出安裝和配置的步驟。首先需要設置Oracle xe版本的源:
Java代碼
- sudo vim /etc/apt/sources.list
- sudo vim /etc/apt/sources.list
在該文件中增加:
Java代碼
- deb http://oss.Oracle.com/debian unstable main non-free
- deb http://oss.Oracle.com/debian unstable main non-free
ubuntu 9.04 安裝Oracle10g xe 步驟中我們運行完以上的步驟,然後需要將該源服務器的公鑰添加在本地 apt 系統的密鑰庫中:
ava代碼
- wget http://oss.Oracle.com/el4/RPM-GPG-KEY-Oracle
-O- | sudo apt-key add -- wget http://oss.Oracle.com/el4/RPM-GPG-KEY-Oracle
-O- | sudo apt-key add -
然後,更新apt庫:
Java代碼
- apt-get update
- apt-get update
首先,需要配置apt-get,見在ubuntu server下安裝Oracle XE相關部分。