首页 > 代码库 > 更换服务器主板导致vcs不能启动解决方案

更换服务器主板导致vcs不能启动解决方案

服务器:HP DL385 G7

操作系统:suse10 sp3

数据库:oracle 11g R2

集群软件:VCS 双机主备

环境:两台服务器使用VCS软件做的oracle主备切换数据库

由于两台数据库主机同时出现主板故障,更换主板后服务器网卡的mac地址均出现变更,从而导致vcs双机服务器无法启动,而且网卡的序号也不一致,从以前的eth0,eth1,eth2,eth3变成eth4,eth5,eth6,eth7

解决方法如下:

1.eth网络修改回原先的eth0,eth1,eth2,eth3 名称,在修改时要注意网卡的物理位置对应的顺序,不能错乱。
2.修改/etc/llttab

 这个文件时vcs用来记录心跳线网卡的mac地址,将文件内容更改为现在的mac地址,vcs通常使用两块网卡作为心跳,两块都要修改。

# cat /etc/llttab

set-node linux09

set-cluster 110

#link eth2 eth-xx:xx:xx:xx:xx:xx - ether - -

#link eth3 eth-xx:xx:xx:xx:xx:xx - ether - -

link eth2 eth-xx:xx:xx:xx:xx:xx - ether - -

link eth3 eth-xx:xx:xx:xx:xx:xx  - ether - -

3.重启vcs软件,vcs软件的启停有三个服务器,这三个服务器需要严格的按照顺序进行操作,停的顺序是vcsgabllt,启动的顺序刚好相反lltgabvcs

/etc/init.d/vcs stop

/etc/init.d/gab stop

/etc/init.d/vcs stop

 /etc/init.d/llt start

 /etc/init.d/gab start

 /etc/init.d/vcs start

 

 


更换服务器主板导致vcs不能启动解决方案