[url=http://jythoner.iteye.com/blog/698323][color=blue][size=xx-large][b]前言[/b][/size][/color][/url]
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
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
本文提供了一个详细的指南来安装 Oracle 11g 数据库服务器或客户端。包括了必要的软件预置条件检查、系统配置调整以及创建用户和组等步骤。还介绍了如何设置 Oracle 的环境变量。
96

被折叠的 条评论
为什么被折叠?



