ONTAP Discussions

How to increase storage capacity of ONTAP select using CLI?

naotakakamio
2,437 Views

There is an instruction how to increase storage capacity using GUI below Page-3.

https://docs.netapp.com/us-en/ontap-select/pdfs/pages/concept_stor_capacity_inc.pdf

Can I same things by CLI? I can not find the way to do by CLI.

1 ACCEPTED SOLUTION
Drew_C has accepted the solution

shuklas
2,283 Views

You can use Deploy CLI to add the disks.

 

Here is the command syntax to add the disk from the deploy CLI for a HA system.

 

 

(ONTAPdeploy) node storage pool attach -cluster-name Sanjeev -node-name Sanjeev-01 -capacity-limit 1TB -name datastore3 -mirror datastore4 -username admin -foreground

Password for admin:

[Request 50164 (success)]: Storage add for node "Sanjeev-01" in cluster "Sanjeev" completed successfully.

(ONTAPdeploy)

 

Arguments :

 

Cluster Name: Sanjeev

Node-name: Sanjeev-01

Capacity-Limit: 1TB (Size of the Disk )

Name: datastore 3 ( Name of the Datastore where the vmdk is being created)

Mirror: datastore4 (Name of the Datastore where the mirror vmdk is being created)

Username: admin

Password: ONTAP password.

View solution in original post

2 REPLIES 2
Drew_C has accepted the solution

shuklas
2,284 Views

You can use Deploy CLI to add the disks.

 

Here is the command syntax to add the disk from the deploy CLI for a HA system.

 

 

(ONTAPdeploy) node storage pool attach -cluster-name Sanjeev -node-name Sanjeev-01 -capacity-limit 1TB -name datastore3 -mirror datastore4 -username admin -foreground

Password for admin:

[Request 50164 (success)]: Storage add for node "Sanjeev-01" in cluster "Sanjeev" completed successfully.

(ONTAPdeploy)

 

Arguments :

 

Cluster Name: Sanjeev

Node-name: Sanjeev-01

Capacity-Limit: 1TB (Size of the Disk )

Name: datastore 3 ( Name of the Datastore where the vmdk is being created)

Mirror: datastore4 (Name of the Datastore where the mirror vmdk is being created)

Username: admin

Password: ONTAP password.

naotakakamio
2,241 Views

Thank you very much.

Public