Microsoft Virtualization Discussions

When using the "-controller" option with commands such as get-navol I get "Get-NaVol : API invoke failed."

ryanf123
5,019 Views

Any thoughts on this? I'm doing scripting for a lab environment, and using connect-nacontroller in the script works until I get halfway through the 150 or so flexclones I'm creating, and then I get errors stating that  the variable stored globally (I can't remember what it is, but I think it's $global:nacontroller) is not of type "netapp controller" (again, I don't remember the actual wording here, sorry). I'm open to any suggestions that may help.

1 ACCEPTED SOLUTION

fjohn
5,019 Views

When I work with many controllers, I generally put the controller objects in an array, then work with the array.  You can find an example here: http://communities.netapp.com/docs/DOC-6293

J

View solution in original post

3 REPLIES 3

fjohn
5,020 Views

When I work with many controllers, I generally put the controller objects in an array, then work with the array.  You can find an example here: http://communities.netapp.com/docs/DOC-6293

J

ryanf123
5,019 Views

After choosing the array route, I now am getting RPC server unavailable errors. Any thoughts? This also occurs when I try to use connect-nacontroller directly from PS.

paleon
5,019 Views

The "-controller" parameter is expecting an object of type NetApp.Ontapi.Filer.NaController, not of type System.String.

As a result, the code below is correct.

$netappCred = Get-Credential -Credential "root"
$controller = Connect-NaController -Name "filername" -Credential $netappCred
$vols = Get-NaVol -Controller $controller

The code below here, is incorrect

$netappCred = Get-Credential -Credential "root"
$controller = Connect-NaController -Name "filername" -Credential $netappCred
$vols = Get-NaVol -Controller "filername"

I hope this helps.

Bill

Public