安裝Oracle10201 for REDHAT AS4 x86_64

yangtingkun發表於2008-01-31

記錄一下REDHAT AS4上安裝Oracle 10201的過程。


首先使用root登陸,檢查系統硬體配置:

[root@haoc2008 data]# grep MemTotal /proc/meminfo
MemTotal:      8166284 kB
[root@haoc2008 data]# grep SwapTotal /proc/meminfo
SwapTotal:    17205572 kB
[root@haoc2008 data]# free
             total       used       free     shared    buffers     cached
Mem:       8166284    1838540    6327744          0      56636    1583592
-/+ buffers/cache:     198312    7967972
Swap:     17205572          0   17205572
[root@haoc2008 data]# df -k /tmp
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sda5             20161172     77848  19059184   1% /tmp
[root@haoc2008 data]# df -k /data
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sda9            173206016    877204 163530416   1% /data
[root@haoc2008 data]# grep "model name" /proc/cpuinfo
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GHz
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GHz
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GH
z
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GHz
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GHz
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GHz
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GHz
model name      : Intel(R) Xeon(R) CPU           E5335  @ 2.00GHz

下面檢查作業系統資訊:

[root@haoc2008 data]# cat /proc/version
Linux version 2.6.9-5.ELsmp (bhcompile@thor.perf.redhat.com) (gcc version 3.4.3 20041212 (Red Hat 3.4.3-9.EL4)) #1 SMP Wed Jan 5 19:29:47 EST 2005
[root@haoc2008 data]# uname -r
2.6.9-5.ELsmp

使用rpm –qa查詢檢查系統中是否存在以下的包:

binutils-2.15.92.0.2-13.EL4
compat-db-4.1.25-9
control-center-2.8.0-12
gcc-3.4.3-9.EL4
gcc-c++-3.4.3-9.EL4
glibc-2.3.4-2
glibc-common-2.3.4-2
gnome-libs-1.4.1.2.90-44.1
libstdc++-3.4.3-9.EL4
libstdc++-devel-3.4.3-9.EL4
make-3.80-5
pdksh-5.2.14-30
sysstat-5.0.5-1
libaio-0.3.105
xorg-x11-deprecated-libs-6.8.2-1.EL.13.37.i386.rpm
xscreensaver-4.18-5.rhel4.2

缺少的包使用rpm –ivh進行安裝。

[root@haoc2008 data]# groupadd oinstall
[root@haoc2008 data]# groupadd dba
[root@haoc2008 data]# useradd -g oinstall -G dba oracle
[root@haoc2008 data]# passwd oracle
Changing password for user oracle.
New UNIX password:
BAD PASSWORD: it is based on a dictionary word
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
[root@haoc2008 data]# id nobody
uid=99(nobody) gid=99(nobody) groups=99(nobody)

編輯/etc/sysctl.conf檔案新增下面內容:

kernel.shmall = 2097152
kernel.shmmax = 8589934592
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 262144
net.core.rmem_max = 262144
net.core.wmem_default = 262144
net.core.wmem_max = 262144

編輯/etc/security/limits.conf檔案,新增下面內容:

oracle           soft    nproc   2047
oracle           hard    nproc   16384
oracle           soft    nofile  1024
oracle           hard    nofile  65536

編輯/etc/pam.d/login檔案新增下面的內容:

session    required     pam_limits.so

編輯oracle使用者的.bash_profile檔案,新增下面的內容:

if [ $USER = "oracle" ]; then
        if [ $SHELL = "/bin/ksh" ]; then
              ulimit -p 16384
              ulimit -n 65536
        else
              ulimit -u 16384 -n 65536
        fi
fi

export ORACLE_SID=db08
export ORACLE_BASE=/data/oracle
export ORACLE_HOME=/data/oracle/product/10.2
export PATH=$ORACLE_HOME/bin:$PATH
export NLS_LANG="SIMPLIFIED CHINESE_CHINA.ZHS16GBK"
export DISPLAY=172.25.13.177:1.0

建立ORACLE_BASEORACLE_HOME目錄:

[root@haoc2008 data]# chown -R oracle.dba /data
[root@haoc2008 data]# su - oracle
[oracle@haoc2008 ~]$ mkdir -p /data/oracle/product/10.2

下面就可以執行安裝了,如果前期檢查準備工作做的比較好的話,安裝過程還是比較見到的,這裡就不描述了。

安裝之後需要使用root執行一個指令碼:

[root@haoc2008 ~]# . /data/oracle/oraInventory/orainstRoot.sh
Changing permissions of /data/oracle/oraInventory to 770.
Changing groupname of /data/oracle/oraInventory to oinstall.
The execution of the script. is complete

安裝過程完成,下面可以開始建庫。建庫過程也沒有什麼值得描述的,建庫完成,登陸資料庫檢查版本資訊:

[oracle@haoc2008 oracle]$ sqlplus "/ as sysdba"

SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 12 4 09:54:43 2007

Copyright (c) 1982, 2005, Oracle.  All rights reserved.


連線到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options

SQL> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
PL/SQL Release 10.2.0.1.0 - Production
CORE    10.2.0.1.0      Production
TNS for Linux: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production

需要注意,雖然otn網站上10g安裝文件做的比9i的要好一些,仍然建議在安裝的時候參考metalink上的文件。

如果參考了otn上面的文件,那麼很可能會碰到下面幾個bug

安裝ORACLE10201 for REDHAT AS4 x86-64報錯無法開啟共享物件檔案:http://yangtingkun.itpub.net/post/468/434623

安裝ORACLE10201 for REDHAT AS4 x86-64時編譯all_no_orcl報錯:http://yangtingkun.itpub.net/post/468/436723

ORACLE10201 for REDHAT AS4 x86-64建庫時報錯ORA-12547http://yangtingkun.itpub.net/post/468/454447

這三個bug都是由於官方文件上對於所需作業系統安裝包的描述有誤造成的。而且這兩個包基本都是Oracle提供的解決方法或者相關軟體包。

如果在Oracle提供的Enterprise Linux4 for X86-64上,安裝Oracle則不會存在任何的問題。可能也正是由於RedhatOracle的支援不好,造成的了Oracle踢開了Redhat,自己推出了Enterprise Linux

如果僅從這一點考慮,Oracle推出linux對於dba絕對是一個好訊息,至少linux上面的安裝不再是那麼麻煩的事情了。

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4227/viewspace-69542/,如需轉載,請註明出處,否則將追究法律責任。

相關文章