Clone a PowerHA node from another

Feb 24, 2021

Share this:

Posted in:

Uncategorized

First, this is NOT, an officially supported process so use at your own risk.

Backstory. I had a customer that corrupted their rootvg contents on their standby node after loading some additional packages and application updates. Trying to remove corrupted some libraries. Unfortunately they did not clone or create a mksysb prior to performing these actions. So we created a clone from their primary PowerHA node.

Also know that prior to creating the clone, you can either enable the ghostdev parameter or use the “-O” flag when creating the clone to make it forget about things like hostname,ip, vgs, etc as shown in the video

Note in this case the standby node was still up and running we just needed to get back to a known good state prior to the changes. So we added a new lun to prod, cloned to it, then moved the disk over to the standby and changed the bootlist to it. IF it wasn’t available this procedure would have involved an SMS boot to choose the new cloned boot disk.

Now not shown is also the potential cleanup/changes needed to made on the standby that we don’t want from prod. For example, cronjobs may need to be disabled. There may also be other misc cleanup but the primary focus here was getting the cluster functional again.

So our procedure consisted of the following:

  1. Allocate new lun to prod and run cfgmgr
  2. Create clone to new lun via “alt_disk_copy -B -d hdisk# -O
  3. Wake up clone via “alt_rootvg_op -W -d hdisk#
  4. Remove all entries in /etc/filesystems other than rootvg
  5. Put clone back to sleep via “alt_rootvg_op -S -d hdisk#
  6. Remove cloned vg via “alt_rootvg_op -X altinst_rootvg
  7. Remove disk from prod via “rmdev -dl hdisk#
  8. Unallocate lun from prod and over to standby and run “cfgmgr” on standby
  9. Change bootlist to boot from the newly added disk via “bootlist -m normal newhdisk# currentrootvghdisk#
  10. Reboot standby via “shutdown -Fr
  11. Recreate hostname, IP, subnet mask via either ifconfig or smitty mktcpip
  12. Run clusterconf to import and activate CAA  via “clusterconf -r reposhdisk#
  13. Import shared vg via “importvg -y vgname -V major# -n hdisk#
  14. Sync cluster from prod node via “clmgr sync cluster
  15. Assuming no errors, restart standby node into cluster via “clmgr start node

Check out the following video showing these procedures.