Rootvg Mirroring in AIX

Server is having 1 hard disk (hdisk0) in which OS is installed.
The procedure will give step by step guide to attach a new hard disk to a running AIX machine and configure root mirroring.

#lspv
hdisk0          0005e8d264d0ec83                    rootvg          active

The output shows only one disk, i.e, hdisk0

Procedure:

1. Attach a new disk to the machine.
2. Run cfgmgr command in the machine to scan for new disk

#cfgmgr

3. Once the scanning is done, it should show a new disk in the #lspv output

# lspv
hdisk0          0005e8d264d0ec83                    rootvg          active
hdisk1          0005e8d2821e8e0e                    none            none

4. If the PVID is not shown for the disk hdisk1, then you need to activate PV ID in the new disk.Enter the following command to do so:

#chdev -l hdisk1 -a pv=yes

Now run the lspv command to check the disks

#lspv

5. Extend the rootvg

#extendvg rootvg hdisk1

Use lspv and check the output now

# lspv
hdisk0          0005e8d264d0ec83                    rootvg          active
hdisk1          0005e8d2821e8e0e                    rootvg            none

6. Disable Quoram for rootvg

#chvg -Q n rootvg

7. Mirror the rootvg

#mirrorvg -s rootvg

8. Sync the rootvg to remove the stale status of LVs

#syncvg -v rootvg

Watch out for the progress of sync. Once the sync is completed, you wont find any stale LP/PPs in the VG information. To check the stale status of the VG, use the command

#lsvg rootvg

9. Install the boot strap program on the new disk hdisk1

#bosboot -ad hdisk1

10. Add the new disk hdisk1 also to the bootable devices list

#bootlist -m normal hdisk1 hdisk0

11. Reboot the machine to check if the OS can be booted from the mirrored disk

#shutdown -Fr

12. Once the OS is booted, check from which the OS has booted,

#bootinfo -b



source: https://sysadmincorner.wordpress.com/2012/04/05/rootvg-mirroring-in-aix/
Attachments
There are no attachments for this article.
Related Articles RSS Feed
Working with Virtual media library on VIO servers
Viewed 18506 times since Thu, Feb 21, 2019
LVM: Extend an existing Volume Group by adding a new disk
Viewed 6647 times since Sat, Jun 2, 2018
AIX Reviewing AIX Error and Boot Logs
Viewed 4828 times since Wed, Mar 20, 2019
Recovery AIX system when hang on boot (554 code error).
Viewed 18650 times since Thu, Feb 21, 2019
How to Analyze or Read OS Watcher Output in three easy steps -- With Example ?
Viewed 44458 times since Thu, Jun 21, 2018
Migrating from SDDPCM to AIXPCM (the easy way)
Viewed 3636 times since Mon, Jun 3, 2019
List AIX File Systems the Easy Way With the lsvgfs Command
Viewed 3354 times since Thu, Sep 20, 2018
Part 2, Monitoring memory usage (ps, sar, svmon, vmstat) and analyzing the results AIX7
Viewed 14557 times since Wed, Jun 19, 2019
This document discusses a new feature implemented for JFS2 filesystems to prevent simultaneous mounting.
Viewed 5578 times since Sat, Jun 1, 2019
AIX Commands Related to Boot and Init Process
Viewed 6251 times since Tue, Apr 16, 2019