ONTAP 9.13

to Japanese version

Remove ownership from a disk

ONTAP writes disk ownership information to the disk. Before you remove a spare disk or its shelf from a node, you should remove its ownership information so that it can be properly integrated into another node.

What you’ll need

The disk you want to remove ownership from must meet the following requirements:

  • It must be a spare disk.

    You cannot remove ownership from a disk that is being used in an local tier (aggregate).

  • It cannot be in the maintenance center.

  • It cannot be undergoing sanitization.

  • It cannot have failed.

    It is not necessary to remove ownership from a failed disk.

About this task

If you have automatic disk assignment enabled, ONTAP could automatically reassign ownership before you remove the disk from the node. For this reason, you disable the automatic ownership assignment until the disk is removed, and then you re-enable it.

Steps
  1. If disk ownership automatic assignment is on, use the CLI to turn it off:

    storage disk option modify -node node_name -autoassign off

  2. If needed, repeat the previous step for the node’s HA partner.

  3. Remove the software ownership information from the disk:

    storage disk removeowner disk_name

    To remove ownership information from multiple disks, use a comma-separated list.

    Example:

    storage disk removeowner sys1:0a.23,sys1:0a.24,sys1:0a.25
  4. If the disk is partitioned for root-data partitioning, remove ownership from the partitions:

    1. For ONTAP 9.10.1 and later, enter:

      storage disk removeowner -disk disk_name

    2. For ONTAP 9.9.1 and earlier, enter both commands:

      storage disk removeowner -disk disk_name -root true

      storage disk removeowner -disk disk_name -data true

    Both partitions are no longer owned by any node.

  5. If you previously turned off automatic assignment of disk ownership, turn it on after the disk has been removed or reassigned:

    storage disk option modify -node node_name -autoassign on

  6. If needed, repeat the previous step for the node’s HA partner.

Top of Page