1.创建用户与属主
mkdir /oracle
chmod -R 777 /oracle
groupadd -g 100 oinstall
groupadd -g 101 dba
useradd -u 200 -g oinstall -G dba -s /usr/bin/bash -d /oracle -m oracle
passwd oracle
chown -R oracle:oinstall /oracle
2.在所有节点上验证用户nobody是否存在
id -a nobody
3.配置/etc/hosts,注:在SOLARIS系统中,切勿使用大写字母作为主机名,不然CRS安装阶段root.sh会报错。
配置/.rhosts与ORACLE用户下.rhosts
确认网卡顺序。
127.0.0.1 localhost.localdomain localhost
172.31.80.133 szdb1
192.168.12.13 szdb1_priv
172.31.80.132 szdb1_vip
172.31.80.135 szdb2
192.168.12.14 szdb2_priv
172.31.80.134 szdb2_vip
.rhosts不再赘述
4.确认网关可ping通。
5.修改/etc/system,增加如下项目,SHMMAX根据实际内存调整。
set noexec_user_stack=1
set semsys:seminfo_semmni=100
set semsys:seminfo_semmns=1024
set semsys:seminfo_semmsl=256
set semsys:seminfo_semvmx=32767
set shmsys:shminfo_shmmax=410294967295
set shmsys:shminfo_shmmin=1
set shmsys:shminfo_shmmni=100
set shmsys:shminfo_shmseg=10
6.检查网络参数
ndd /dev/udp udp_xmit_hiwat 65535
ndd /dev/udp udp_recv_hiwat 65535
如不是65535编辑/etc/rc2.d/S99ndd,增加如下项目
ndd -set /dev/udp udp_xmit_hiwat 65535
ndd -set /dev/udp udp_recv_hiwat 65535
chmod 744 S99ndd
7.添加基础环境
mkdir -p /oracle/app/oracle/product/10.2.0/db_1
mkdir -p /oracle/app/oracle/product/10.2.0/crs_1
chown -R oracle:oinstall /oracle
chmod -R 775 /oracle
chown -R oracle:oinstall /install
vi .profile
umask 022
export ORACLE_BASE=/oracle/app/oracle
export ORACLE_HOME=/oracle/app/oracle/product/10.2.0/db_1
export NLS_LANG=AMERICAN_AMERICA.zhs16gbk
export PATH=$PATH:$ORACLE_HOME/bin:$HOME/bin:/usr/sbin:/usr/bin:.
8.配置NTP(不再赘述)
9..确认操作系统软件包
pkginfo -i SUNWarc SUNWbtool SUNWhea SUNWlibm SUNWlibms SUNWsprot SUNWtoo SUNWi1of SUNWi1cs SUNWi15cs SUNWxwfnt
pkginfo -i SUNWmfrun SUNWxcu4 SUNWuiu8 SUNWulcf
pkginfo -i SUNWi1cs SUNWi15cs SUNWulcf
10.划分存储注意事项
1-3个柱面需留给ASM头,否则安装顺利,重启后ASM头丢失,如没ASM头备份恭喜你GG。。。。
按如下示例划分
partition> p
Current partition table (original):
Total disk cylinders available: 126 + 2 (reserved cylinders)
Part Tag Flag Cylinders Size Blocks
0 root wm 0 0 (0/0/0) 0
1 swap wu 0 0 (0/0/0) 0
2 backup wu 0 - 125 1008.00MB (126/0/0) 2064384
3 unassigned wm 0 0 (0/0/0) 0
4 unassigned wm 0 0 (0/0/0) 0
5 unassigned wm 0 0 (0/0/0) 0
6 usr wm 4 - 125 976.00MB (122/0/0) 1998848
7 unassigned wm 0 0 (0/0/0) 0
11.一路顺利安装。。。没有什么要记录的了。