(英文改错系列1)Install Oracle 11g server/client on AIX 6.1.4
前言
Check software pre-requisite, the following filesets are required for oracle 11g, you can follow this guide to install these filesets.
bos.adt.base
bos.adt.lib
bos.adt.libm
bos.perf.libprefstat
bos.perf.perfstat
bos.perf.proctools
xlC.aix50.rte 8.0.0.8 or later
xlC.rte 8.0.0 or later
You can run this command to check:
lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.perfstat bos.perf.libperfstat bos.perf.proctools
Change max number of processes allowed if you are going to install oracle 11g server:
Run "smit chgsys"
Set "Maximum number of PROCESSES allowed per user" to more than 2048
Verify that "ARG/ENV list size in 4K byte blocks" >= 128
Make sure you have available disk space for installation directory by following this guide
Create users/groups
mkgroup oinstall
mkgroup dba
mkgroup oper
useradd -g oinstall -G dba,oper -m oracle
passwd oracle
Create oracle home directory
mkdir -p /opt/app/
chown -R oracle:oinstall /opt/app/
chmod -R 775 /opt/app/
Change display setting
vi /home/oracle/.profile
add a new line "DISPLAY=:1.0 ; export DISPLAY"
Set ORACLE_HOME
vi /home/oracle/.profile
Add the following lines:
ORACLE_BASE=/opt/app/oracle
ORACLE_SID=<Your SID, like IBMSE>
export ORACLE_BASE ORACLE_SID
ORACLE_HOME=$ORACLE_BASE/product/11.1.0/db1 or $ORACLE_BASE/product/11.1.0/client1
PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_HOME PATH
Switch to the user "oracle" and launch the installer to install oracle server/client