Which option will modify the configuration on serverA t…

The zpool configuration on serverA is:
pool 1
c3t2d0
c3t3d0
pool 2
c3t4d0
c3t5d0
The zpool configuration on servetB is:
pool1
mirror-0
c3t2d0
c3t3d0
mirror-1
c3t4d0
c3t5d0
Which option will modify the configuration on serverA to match serverB?

The zpool configuration on serverA is:
pool 1
c3t2d0
c3t3d0
pool 2
c3t4d0
c3t5d0
The zpool configuration on servetB is:
pool1
mirror-0
c3t2d0
c3t3d0
mirror-1
c3t4d0
c3t5d0
Which option will modify the configuration on serverA to match serverB?

A.
zpool destroy pool2
zpool attach pool1 c3t4d0 c3t5d0

B.
zpool destroy pool2
zpool attach pool1 c3t2d0 c3t2d0 c3t4d0 c3t5d0

C.
zpool destroy pool2
zpool add pool1 c3t4d0 c3t5d0

D.
zpool destroy pool2
zpool mirror pool1 pool2

E.
zpool destroy pool2
zpool attach pool1 c3t2d0 attach pool1 c3t3d0
zpool attach pool1 c3t4d0 attach pool1 c3t5d0

F.
zpool destroy pool1; zpool destroy pool2; zpool create pool1 mirror c3t2d0 c3t3d0 mirror c4t4d0 c3t5d0

Explanation:
Example;root@solaris:~# zpool create pool1 mirror c8t0d0 c8t1d0 mirror c8t3d0 c8t4d0
root@solaris:~# zpool status
pool: pool1
state: ONLINE
scan: none requested
config:
NAME STATE READ WRITE CKSUM
pool1 ONLINE 0 0 0
mirror-0 ONLINE 0 0 0c8t0d0 ONLINE 0 0 0
c8t1d0 ONLINE 0 0 0
mirror-1 ONLINE 0 0 0
c8t3d0 ONLINE 0 0 0



Leave a Reply 0

Your email address will not be published. Required fields are marked *