aix 5300-07上安裝oracle 10.2.0.1

fanhongjie發表於2008-05-23

今天測試了一下在aix 5300-07上安裝oracle 10.2.0.1.

硬體環境:IBM 550Q

4路CPU,8GB記憶體,2*146GB HD,加DS4700盤陣

[@more@]

參考ORACLE的DOCMENTS: Oracle® Database Quick Installation Guide
10g Release 2 (10.2) for AIX 5L Based Systems (64-Bit)

1、安裝好AIX 5.3之後,調整PAGESPACE為8GB,/tmp為1GB,/usr為3GB.

2、在盤陣上建立兩個LV (smit mklv),在LV上建立jfs2檔案系統(smit jfs2),對應/oracle/oradata和/oracle/orasoft,分別是400GB和20GB。mount上這兩個檔案系統

3、確認作業系統的體系結構 /usr/bin/getconf HARDWARE_BITMODE

64

4、確認系統CPU個數和主頻:
# lsdev -C |grep proc
proc0 Available 00-00 Processor
proc2 Available 00-02 Processor
proc4 Available 00-04 Processor
proc6 Available 00-06 Processor

# lsattr -E -l proc0
frequency 1648350000 Processor Speed False
smt_enabled true Processor SMT enabled False
smt_threads 2 Processor SMT threads False
state enable Processor state False
type PowerPC_POWER5 Processor type False

# lsattr -E -l proc2
frequency 1648350000 Processor Speed False
smt_enabled true Processor SMT enabled False
smt_threads 2 Processor SMT threads False
state enable Processor state False
type PowerPC_POWER5 Processor type False 依次類推

5、檢查安裝ORACLE需要的補丁是否已經安裝好

lslpp -L bos.adt.base bos.adt.lib bos.adt.libm bos.perf.perfstat bos.perf.libperfstat bos.perf.proctools bos.adt.prof bos.cifs_fs.rte xlC.aix50.rte xlC.rte

如果存在沒有安裝的,把第一張光碟放到光碟機中,使用smit installp安裝

6、建立需要的使用者和組:oracle / oinstall / dba 並將oracle 加入這兩個組中

7、修改使用者和系統配置引數:

smit chuser修改oracle使用者的SHELL limits

Soft FILE size -1
Soft CPU time -1
Soft DATA segment -1
Soft STACK size -1

使用smit chgsys修改“Maximum number of PROCESSES allowed per user”最小2048

8、修改/oracle/oradata和/oracle/orasoft檔案系統的許可權和所有者

chmod -R 775 /oracle/oradata /oracle/orasoft
chown -R oracle:oinstall /oracle/oradat /oracle/orasoft

9、以oracle使用者帳號登陸AIX,設定oracle使用者的環境變數,編輯/home/oracle下的.profile檔案

export ORACLE_BASE=/oracle/oradata
export ORACLE_HOME=/oracle/orasoft/OraHome_1
export ORACLE_SID=test
export PATH=$PATH:$ORACLE_HOME/bin:.
export AIXTHREAD_SCOPE=S

10、上傳10gr2_aix5l64_database.cpio.gz到AIX伺服器上。

gunzip 10gr2_aix5l64_database.cpio.gz
cpio -idcmv < 10gr2_aix5l64_database.cpio.gz

11、登出oracle使用者,重新登陸,在第10步中生成的安裝檔案的目錄中,執行./runInstaller,提示用root帳號執行rootpre.sh,往後就看著提示一直做下去。

等待安裝過程結束,沒有出現任何意外。


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

相關文章