How to clean failing error in veritas VxVM

1.-How to clean failing in a disk or group disks


# vxdisk list | grep fail
 c1t0d0s2 auto:sliced rootdisk rootdg online failing
 c1t1d0s2 auto:sliced disk01    rootdg   online failing

The command is the following

# vxedit -g <DISK_GROUP NAME> set failing=off <DISK_NAME>

# vxedit -g rootdg set failing=off rootdisk
# vxedit -g rootdg set failing=off disk01

Verify the disk in order to check if the "FAILING" was cleaned

# vxdisk list | grep fail
c1t0d0s2 auto:sliced rootdisk rootdg online
c1t1d0s2 auto:sliced disk01 rootdg online

 

Comments