Below commands tested on Oracle Enterprise Linux 5.1 – 10gR2 2-node RAC cluster.
[oracle@linux1 ~]$ crsctl query css votedisk
0. 0 /u02/oradata/ractest/CSSFile
1. 0 /u02/oradata/ractest/CSSFile_mirror1
2. 0 /u02/oradata/ractest/CSSFile_mirror2
located 3 votedisk(s).
when we back up the voting disks:
– After RAC installation
– After adding nodes to or deleting nodes from the RAC
– After performing voting disk add or delete operations
To make a backup of the voting disk:
– I use the Linux dd command,
voting_disk_name is the name of the active voting disk.
backup_file_name is the name of the file to which you want to back up the voting disk contents.
dd if=voting_disk_name of=backup_file_name
Perform this operation on every voting disk as needed.
– If the voting disk is stored on a raw device, you can use the device name in place of voting_disk_name.
Example:
[oracle@linux1 ~]$ dd if=/u02/oradata/ractest/CSSFile of=CSSFile_bck
20000+0 records in
20000+0 records out
10240000 bytes (10 MB) copied, 1.13288 seconds, 9.0 MB/s
“the backup can be performed while the Cluster Ready Services (CRS) process is active”.
Best Regards
Referances:
Oracle® Database 2 Day + Real Application Clusters Guide 10g Release 2 (10.2) Part Number B28759-03
Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Administration and Deployment Guide 10g Release 2 (10.2)


