轉載自:http://blog.csdn.net/picklove/archive/2008/01/25/2065022.aspx
一、 安裝準備:
下載檔案l Oracle Database 10g Release 2(10.2.0.1) Software
解壓檔案解壓檔案命令:unzip 10201_database_linux32.zip解壓後的檔案夾可能“database”或“db/Disk1”
Hosts檔案在/etc/hosts 檔案中包含一個完整合法的伺服器名<IP-address> <fully-qualified-machine-name> <machine-name>
設定核心參數在/etc/sysctl.conf中添加以下行:#kernel.shmall = 2097152#kernel.shmmax = 2147483648kernel.shmmni = 4096# semaphores: semmsl, semmns, semopm, semmnikernel.sem = 250 32000 100 128#fs.file-max = 65536net.ipv4.ip_local_port_range = 1024 65000net.core.rmem_default=262144net.core.rmem_max=262144net.core.wmem_default=262144net.core.wmen_max=262144運行下面的命令應用以上OS參數/sbin/sysctl -p添加以下行到/ect/security/limits.conf檔案中* soft nproc 2047* hard nproc 16384* soft nofile 1024* hard nofile 65536 如果/etc/pam.d/login檔案中沒有以下行,則添加以下內容:session required /lib/security/pam_limits.so修改/etc/selinux/config檔案來關閉linux防火牆,確保SELINUX設定如下:SELINUX=disabled
檢查安裝包檢查是否具備以下安裝包:make-3.79.1gcc-3.2.3-34glibc-2.3.2-95.20compat-db-4.0.14-5compat-gcc-7.3-2.96.128compat-gcc-c++-7.3-2.96.128compat-libstdc++-7.3-2.96.128compat-libstdc++-devel-7.3-2.96.128libXpopenmotif21-2.1.30-8setarch-1.3-1查詢所需安裝包是否完整(缺少補啥)
rpm -q gcc make binutils openmotif setarch compat-db compat-gcc compat-gcc-c++ compat-libstdc++ compat-libstdc++-devel libXp
用以下命令安裝以下包:
rpm -Uvh [包名稱]
添加組和使用者groupadd oinstallgroupadd dbagroupadd oper useradd -g oinstall -G dba oraclepasswd oracle
檢查記憶體和磁碟檢查記憶體情況# grep MemTotal /proc/meminfo# grep SwapTotal /proc/meminfo 檢查磁碟情況#df -h
建立安裝目錄建立oracle安裝目錄#mkdir -p /u01/app/oracle/product/10.2.0/db_1#chown -R oracle:install /u01/# chmod -R 775 /u01/app/oracle
版本資訊因為預設rhel5.1不支援10.2,0.1,所以要修改一些參數編輯/etc/redhat-release檔案替換現在的版本資訊(Red Hat Enterprise Linux Server release 5 (Tikanga))
redhat-4
以可以通過修改安裝檔案oraparam.ini,添加redhat-5(二者選一即可)
# vi /10201_database_linux32/database/install/oraparam.ini
### #[Certified Versions]
Linux=redhat-3,SuSE-9,redhat-4,redhat-5,UnitedLinux-1.0,asianux-1,asianux-2]
再添加
[Linux-redhat-5.0-optional]
TEMP_SPACE=80
SWAP_SPACE=150
MIN_DISPLAY_COLORS=256
使用者環境變數以oracle使用者登陸,在.bash_profile檔案尾添加以下行:# Oracle SettingsTMP=/tmp; export TMPTMPDIR=$TMP; export TMPDIR ORACLE_BASE=/u01/app/oracle; export ORACLE_BASEORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1; export ORACLE_HOMEORACLE_SID=TSH1; export ORACLE_SIDORACLE_TERM=xterm; export ORACLE_TERMPATH=/usr/sbin:$PATH; export PATHPATH=$ORACLE_HOME/bin:$PATH; export PATH LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATHCLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH if [ $USER = "oracle" ]; then if [ $SHELL = "/bin/ksh" ]; then ulimit -p 16384 ulimit -n 65536 else ulimit -u 16384 -n 65536 fifi
二、開始安裝以文字模式下用boot登入,切換到安裝目錄下
#startx
#xhost +
#su - oracle
$export DISPLAY=<machin-name>:0.0
#./runInstaller
安裝開始
1.選擇安裝方式
2.選擇安裝目錄
3.選擇安裝類型
4.安裝詳細路徑
5.軟體要求檢查
6.配置選項
7.資料庫配置
8.資料庫配置詳情,字元集根據實際情況選擇,可以選擇ZHS16GBK,這樣可以支援中文
9.資料庫管理選項
10.資料庫檔案儲存選項
11.備份和復原選項
12.設定密碼
13.安裝
14.配置Assistants
15.資料庫配置助手
16.密碼管理
17.運行指令碼
18.結束安裝
安裝結束改回作業系統著作權資訊Red Hat Enterprise Linux Server release 5 (Tikanga)
三、常見問題(FAQ)
錯誤1在./runInstaller運行時出現,錯誤描述:Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2007-09-25_10-54-49PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(Unknown Source)
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at sun.security.action.LoadLibraryAction.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
at sun.awt.DebugHelper.<clinit>(Unknown Source)
at java.awt.Component.<clinit>(Unknown Source)
這個錯誤的出現原因是因為RatHat Enterprise Linux 5標準安裝時,缺少libXp-1.0.0-8.i386.rpm包的緣故,我安裝時儘管選的是全安裝,還是出現這個問題。在光碟片的Server檔案下找到libXp-1.0.0-8.i386.rpm,在該目錄下使用命令:
錯誤2在oracle Universal Installer:Install過程中出現,錯誤描述:Exception String: Error in invoking target 'all_no_orcl ihsodbc' of makefile '/oracle/oracle/product/10.2.0/rdbms/lib/ins_rdbms.mk'. See '/oracle/oraInventory/logs/installActions2007-09-25_03-42-11AM.log' for details.Exception Severity: 1這個原因也是由於缺少相應的包compat-libstdc++-33-3.2.3-61.i386.rpm,手動安裝吧。進到光碟片的Sever目錄下,運行下面命令:[root@localhost Server ]#rmp -ivh compat-libstdc++-33-3.2.3-61.i386.rpm
四、其他l 如果沒有安裝盤,可到以下地址下載包http://rpm.pbone.net/l Configuring Linux for the Installation of Oracle Database 10
ghttp://www.oracle.com/technology/obe/obe10gdb/install/linuxpreinst/linuxpreinst.html Installing Oracle Database 10
g Release 2 on Linux x86http://www.oracle.com/technology/pub/articles/smiley_10gdb_install.htmll Installing Oracle Database 10
g on Linuxhttp://www.oracle.com/technology/obe/obe10gdb/install/linuxinst/linuxinst.htm#o