|
|||
1. Getting Started With Solaris Volume Manager 2. Storage Management Concepts 3. Solaris Volume Manager Overview 4. Solaris Volume Manager for Sun Cluster (Overview) 5. Configuring and Using Solaris Volume Manager (Scenario) 8. RAID-0 (Stripe and Concatenation) Volumes (Overview) 9. RAID-0 (Stripe and Concatenation) Volumes (Tasks) 10. RAID-1 (Mirror) Volumes (Overview) 11. RAID-1 (Mirror) Volumes (Tasks) 12. Soft Partitions (Overview) 16. Hot Spare Pools (Overview) How to Add Disks to a Disk Set How to Add Another Host to a Disk Set How to Create Solaris Volume Manager Components in a Disk Set How to Print a Report on Disk Sets Available for Import How to Import a Disk Set From One System to Another System 20. Maintaining Solaris Volume Manager (Tasks) 21. Best Practices for Solaris Volume Manager 22. Top-Down Volume Creation (Overview) 23. Top-Down Volume Creation (Tasks) 24. Monitoring and Error Reporting (Tasks) 25. Troubleshooting Solaris Volume Manager (Tasks) A. Important Solaris Volume Manager Files B. Solaris Volume Manager Quick Reference |
Maintaining Disk SetsHow to Check the Status of a Disk Set
The following example shows the metaset command with the -s option followed by the name of the disk set, blue. The output from this command displays status information for that disk set. The output indicates that host1 is the disk set owner. The metaset command also displays the disks in the disk set. red# metaset -s blue Set name = blue, Set number = 1 Host Owner host1 Yes Drive Dbase c1t6d0 Yes c2t6d0 Yes The metaset command by itself displays the status of all disk sets. How to Delete Disks From a Disk Set
The following example shows the deletion of the disk, c1t6d0 from the disk set, blue. host1# metaset -s blue -d c1t6d0 host1# metaset -s blue Set name = blue, Set number = 1 Host Owner host1 host2 Drive Dbase c2t6d0 Yes How to Take a Disk SetNote - This option is not available for multi-owner disk sets.
In the following example, the host, host1, communicates with the host, host2. This communication ensures that the host host2 has released the disk set before the host, host1, attempts to take the disk set. host1# metaset ... Set name = blue, Set number = 1 Host Owner host1 host2 ... host1# metaset -s blue -t host2# metaset ... Set name = blue, Set number = 1 Host Owner host1 Yes host2 ... If host2 owned the disk set, blue, the “Owner” column in the preceding output would still have been blank. The metaset command only shows whether the host issuing the command owns the disk set. Example 19-9 Taking a Disk Set ForciblyIn the following example, the host that is taking the disk set does not communicate with the other host. Instead, the -f option allows the disks in the disk set to be forcibly taken without warning. If the other host had owned the disk set, that host would panic when it attempted an I/O operation on the disk set. # metaset -s blue -t -f How to Release a Disk SetReleasing a disk set is useful when you perform maintenance on the physical disks in the disk set. When a disk set is released, it cannot be accessed by the host. If both hosts in a disk set release the set, neither host in the disk set can access directly the volumes or hot spare pools that are defined in the disk set . However, if both hosts release the disk set, the hosts can access the disks directly through their c*t*d* names. Note - This option is not available for multi-owner disk sets. Before You BeginCheck Guidelines for Working With Disk Sets.
The following example shows the release of the disk set, blue. Note that there is no owner of the disk set. Viewing status from the host host1 could be misleading. A host can only determine if it does or does not own a disk set. For example, if he host, host2, were to take ownership of the disk set, the ownership would not appear from the host, host1. Only the host, host2, would display that host2 has ownership of the disk set. host1# metaset -s blue -r host1# metaset -s blue Set name = blue, Set number = 1 Host Owner host1 host2 Drive Dbase c1t6d0 Yes c2t6d0 Yes How to Delete a Host or Disk SetDeleting a disk set requires that the disk set contains no disks and that no other hosts are attached to the disk set. Deleting the last host destroys the disk set.
The following example shows the deletion of the host, host2 from the disk set, blue. # metaset -s blue Set name = blue, Set number = 1 Host Owner host1 Yes ..host2 Drive Dbase c1t2d0 Yes c1t3d0 Yes c1t4d0 Yes c1t5d0 Yes c1t6d0 Yes c2t1d0 Yes # metaset -s blue -d -h host2 # metaset -s blue Set name = blue, Set number = 1 Host Owner host1 Yes Drive Dbase c1t2d0 Yes c1t3d0 Yes c1t4d0 Yes c1t5d0 Yes c1t6d0 Yes c2t1d0 YesExample 19-12 Deleting the Last Host from a Disk Set The following example shows the deletion of the last host from the disk set, blue. host1# metaset -s blue -d -h host1 host1# metaset -s blue metaset: host: setname "blue": no such set |
||
|