- 论坛徽章:
- 0
|
机器:
一套P650双机,
1套FASTT 600+EXP700
破烂微机一台
软件:
AIX 5.1ML06
HACMP 5.1
ORACLE 9.2.0.5(RAC)
安装项目:
配置fastT
调整产品参数
划分VG LV等必要空间
安装ORALCE
配置双机
RAC方式 小型机安装心得
(带FASTT600+EXP700)
配置FASTT600
1、 连接双机和FASTT600及EXP700的光纤
2、 在XP或2000的操作系统下安装客户端IBM fast storage manger 9 client,软件在存储的附件光盘中。
3、 配置客户端IP为192.168.128.XXX,因为FASTT600的控制器A的IP:192.168.128.101,控制器B的IP:192.168.128.102
4、 登陆,做阵列,划MAPPING(mapping的意思是给系统添加一个访问控制器的唯一索引),划分VG原则:
VG01 留给oracle 用 给2块盘的大小即可,都做raid 1
VG02 代替以前的datavg 剩下的硬盘总数的1/2,应用数据用
VG03 代替以前的indexvg剩下的硬盘总数的1/2,应用数据用
5、 划分完毕,在系统中就可以看到3个hdisk,创建vg,
# mkvg –C –t 10 –s 16 –y vg01 hdisk2(双机是concurrent 方式,所以要增加一个-C的参数,由于不能引用-B的参数,所以PPsize设置成64)。创建3个vg
-C的作用是concurrrent方式专用参数,用lsvg vg01 查看vg mode是non-concurrent方式。等双机配置起来后,会将vg mode自动改为concurrent方式。即两台机都可以同时挂起vg。
假如vg 建错了可以使用
#reducevg –df vg01 hdisk2
6、 #varyoffvg vg01 到备机上执行importvg –c –y vg01,其他2个vg如此操作。
调整内核参数
(调整内核参数后,机器要重新启动,主备机都要调整)
1、 增加LICENSE
#smitty
--->System Environments
--->Change / Show Number of Licensed User
在‘Maximum number of FIXED licenses’栏填写20
2、使64位应用环境生效
#smitty
--->System Environments
--->Enable 64-bit Application Environment
选择Enable Now和Enable/Disable at System Restart
3、修改异步IO参数
#smitty aio
--->Change/Show Characteristics of Asynchronous I/O
在‘MINIMUM number of server’栏中填写1;
在‘MAXIMUM number of server’栏中填写50;
在‘STATE to be configured at system restart’栏中按选择available;
在‘Stat of fast path’栏中按选择enable;
4、修改每个用户使用的最大进程数和IO参数
smitty chgsys
在‘Maximum number of PROCESSES allowed per user’栏中填写512;
在‘HIGH water mark for pending write I/Os per file’栏中填写33;
在‘LOW water mark for pending write I/Os per file’栏中填写24;
5、修改/etc/security/limits文件
在文件中增加或修改root用户以及oracle用户的参数如下一段文字:
root:
fsize = -1
core = -1
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1
oracle:
fsize = -1
core = -1
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1
7、 本地盘扩卷
#chfs –a size=1000000 /
要求:
/ 512M
/OPT 512M
/TMP 1024M
/USR 1024M
/HOME 10G或更高
8、 交换区一般设置与内存等大即可
如何查看内存大小
lsattr –El mem0
运行lsvg rootvg查看PP size,假如pp size=32M,
则4g的pp数为4000/32=130,则
chps –s 130 hd6
9、 调整时间一致,并更改时区为TAIWAN
配置双机
由于RAC方式的数据库要在双机配置完成的基础上操作的,所以得先配置双机。ICD的双机采用的是HACMP 5.1 配置起来稍微与4.5的不同。
1、 检查网络连接正确和命名正确,以及信任关系的建立。
命名规则:oracle1_service 主用服务IP
oracle1_stb 备用IP
oracle_rac RAC专用IP
2、 配置CLUSTER
smitty hacmp―>Extended Configuration―>Extended Topology Configuration->Configure an HACMP Cluster
命名为:icdcluster
3、 配置NODE
增加:oracle1 对应IP为oracle1_service
oracle2对应IP为oracle2_service
4、 配置NETWORKS 增加net_ether_01,供主备用网卡网络。
增加net_ether_02, RAC专用网络
增加 rs232_net网络,供心跳用
5、 配置Communication Interfaces/Devices
Communication Interfaces/Devices->Add Discovered Communication Interface and Devices->Communication Interface
在net_ethter_01中选择oracle1_service ,oracle2_service, oracle1_stb, oracle2_stb,
在net_ether_02中选择oracle1_rac,oracle2_rac
Communication Interfaces/Devices->Add Pre-defined Communication Interfaces and Devices-> Communication Devices
在rs232_net中增加oracle1_tty ,oracle2_tty.
6、修改net_ether_02的网络属性为私有。
smitty hacmpàExtended ConfigurationàExtended Topology Configurationà Configure HACMP Networksà Change/Show a Network in the HACMP Cluster
把net_ether_02的Network Attribute修改为private
6、 配置服务IP
smitty hacmpàExtended Resource ConfigurationàHACMP Extended Resources ConfigurationàConfigure HACMP Service IP Labels/AddressesàAdd a Service IP Label/AddressàBound to a Single Nodeà<font face="Times New Roman
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/3154/showart_53323.html |
|