安装了两台suse11 sp4的机器,安装hana数据库,需要SID和系统编号一致,hostname需不一样。
配置过程:
在hana1上做如下:
su - hdbadm
./hdbnsutil -sr_enable --name=hana1 开启复制模式
./hdbnsutil -sr_state 查看复制状态
在hana2上做如下:
su - hdbadm
/usr/sap/hostctrl/exe/sapcontrol -nr 00 -function StopSystem HDB 关闭hana2的hana数据库
hdbnsutil -sr_register --name=hana2 --remoteHost=hana1 --remoteInstance=HDB --replicationMode=async --operationMode=logreplay 进行复制配置
./hdbnsutil -sr_state 查看复制状态
/usr/sap/hostctrl/exe/sapcontrol -nr 00 -function StartSystem HDB 启动hana2的hana2数据库。
3.小结
hana system replication优点:
在于在应用层实现容灾,可以考虑在容灾中应用,并且根据hana数据库需要pci-e flash卡的特点,不太适合做存储级别存储层的容灾复制。实现较为灵活。
hana system replication缺点:
数据同步受限于IP网络的速度,second system启用时,hana数据库IP要改变,需要配合DNS做解析的改变。
原文地址:http://heartlost.blog.51cto.com/951147/1759299