Solaris 10 3/05 (FCS) Sparc and SFHA 4.1 Upgrade
Hi All
Here are the details of my setup
OS = Solaris 10 3/05 - Initial Release [First Customer Shipment]
Arch = Sparc
SFHA = 4.1 [VxFS, VxVM, VCS]
IMPORTANT **************
VCS Type = 2 Node Failover Production Cluster.
I'm planning to upgrade my OS to Solaris 10 1/13 update 11 through Liveupgrade after that will Upgrade SFHA using below upgrade path
(Current version) SFHA 4.1 ---- > 4.1 MP2 ---- > 5.1SP1 ---- > 5.1SP1RP4
Now my doubt is after the upgrade of OS and SFHA on one node if i switch the service groups from non-upgraded node to upgraded node will the Service groups switch over because OS and SFHA will be of different version.
Reply is highly appreciated.
Thanks and Kind Regards,
Danish.
Hi Danish,
Yes, you need to stop GAB, Fencing & LLT all 3 of them will be upgraded to latest version.
After doing hastop -local (this will stop HAD)
you need to stop fencing first. To do this,
/etc/init.d/vxfen stop
modinfo |grep -i vxfen (if you find module loaded)
modunload -i <module_id>
Then stop GAB
/etc/init.d/gab stop (this is same as doing gabconfig -U)
modinfo |grep -i gab (if you find module loaded)
modunload -i <module_id>
/etc/init.d/llt stop (this is same as doing lltconfig -U)
modinfo |grep -i llt (if you find module loaded)
modunload -i <module_id>
For Solaris 10, you can use svcadm commands to offline the particular service. However I would still recommend to keep checking modules using modinfo command & unload any module before you stop the next component. Your order of shutting down should be
1.HAD
2. Vxfen
3. GAB
4. LLT
G