Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How to increase storage capacity of ONTAP select using CLI?
2021-01-22
11:27 PM
2,437 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Solved! See The Solution
1 ACCEPTED SOLUTION
Drew_C has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
2 REPLIES 2
Drew_C has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much.
