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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Need some help to add/create quota for the users.
I am ablr to GET the quota report but not able to modify/add quota for existing/new users.
Any leads would be appreaciated.
Thanks,
Rahul
Solved! See The Solution
1 ACCEPTED SOLUTION
Li-Jacques has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Rahul,
I think this thread might help answer your question.
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
3 REPLIES 3
Li-Jacques has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Rahul,
I think this thread might help answer your question.
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the quick reply.
Could not get much help.. following is the snippet where I am getting the error:
if ($filer_type eq "ontap-cm"){ $out = $s->invoke( "quota-add-entry", "disk-limit","$disklimit", "quota-type","user", "quota-target","$uid", "volume","$volume"); if ($out->results_status() eq "failed"){ print($out->results_errno()); print($out->results_reason()); } } else{ $out = $s->invoke( "quota-add-entry", "disk-limit","$disklimit", "quota-type","user", "volume","$volume", "quota-target","$uid", "qtree","$qtree" ); if ($out->results_status() eq "failed"){ print ($out->results_errno()); print($out->results_reason()); } }
The snippet works perfectly fine when the filer type is "ontap" but throws an error when filer type is "ontap-cm"
The error message is "13005 Unable to find API: quota-add-entry ".
Any help/lead would be appreciated.
Thanks,
Rahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The "quota-add-entry" API must be directed at a SVM/vserver. Make sure you're either connecting to the SVM admin LIF, or doing vserver tunneling from the cluster LIF.
Hope that helps.
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
