Netapp ONTAP 9 Command-line by Example
Price: $10.00
(as of Nov 23,2024 02:44:03 UTC – Details)
Publisher : Independently published (December 9, 2017)
Language : English
Paperback : 159 pages
ISBN-10 : 1549810685
ISBN-13 : 978-1549810688
Item Weight : 1.1 pounds
Dimensions : 8.27 x 0.4 x 11.69 inches
Netapp ONTAP 9 Command-line by Example
In this post, we will explore some common commands used in Netapp ONTAP 9 command-line interface (CLI). The ONTAP 9 CLI provides a powerful way to manage and configure your storage environment. Let’s dive into some examples:
- Display system information:
cluster1::> system node show -instance<br /> ```<br /> <br />
- List all SVMs (Storage Virtual Machines):
cluster1::> vserver show<br /> ```<br /> <br />
- Create a new volume:
cluster1::> volume create -vserver svm1 -volume vol1 -aggregate aggr1 -size 10g<br /> ```<br /> <br />
- Show volume information:
cluster1::> volume show -volume vol1<br /> ```<br /> <br />
- Mount a volume to a specific junction path:
cluster1::> volume mount -vserver svm1 -volume vol1 -junction-path /mnt/vol1<br /> ```<br /> <br />
- Resize a volume:
cluster1::> volume size -vserver svm1 -volume vol1 -new-size 20g<br /> ```<br /> <br />
- Create a new snapshot of a volume:
cluster1::> snapshot create -vserver svm1 -volume vol1 -snapshot snap1<br /> ```<br /> <br />
- Delete a snapshot:
cluster1::> snapshot delete -vserver svm1 -volume vol1 -snapshot snap1<br /> ```<br /> <br /> These are just a few examples of the many commands available in Netapp ONTAP 9 CLI. By mastering these commands, you can efficiently manage your storage environment and troubleshoot any issues that may arise. Experiment with these commands and explore the full capabilities of ONTAP 9 CLI.
#Netapp #ONTAP #Commandline