How do I destroy a zfs storage pool in solaris?



  • # zpool destroy 
    
    # zpool destroy test_pool
    

    If you try and destroy a pool that is faulted, you will get an error and you will have to use the force option:

    # zpool destroy test_pool
    cannot destroy test_pool: pool is faulted
    use -f to force destruction anyway
    
    # zpool destroy -f test_pool
    


© Lightnetics 2024