NetApp Community Update
This site will enter Read Only mode on July 23 as we prepare to move to a new platform. You will still be able to view content, but posting and replying will be temporarily disabled.
We're excited to launch our new Community experience on July 30 and more information will follow soon.
Stay connected during the transition - Join our Discord community today.

Microsoft Virtualization Discussions

Make mounted LUN Microsoft Cluster Resource

gregintokyo
4,406 Views

SDCLI allows specifying an existing or new Microsoft Cluster Services resource group name to which a mounted LUN will be added as a disk resource.

The New-NaHostVolume and Start-NaHostDiskRescan cmdlets mounts a LUN to a drive letter/mount point but doesn't do the cluster portion.

Is there an equivalent to the SDCLI -e parameter in the toolkit or does this have to be handdled with the PowerShell Cluster modules?

Greg

1 ACCEPTED SOLUTION

vinith
4,406 Views

Hello, you can also use "Invoke-Nassh" cmdlet to pass sdcli commands to filer.

Invoke-NaSsh " your sdcli command"

For more help on this cmdlet you can type in.

Get-Help Invoke-Nassh -detailed

Using Windows FailoverClusters module you can add the available disk to cluster as below.

Get-ClusterAvailableDisk | Add-ClusterDisk

View solution in original post

2 REPLIES 2

vinith
4,407 Views

Hello, you can also use "Invoke-Nassh" cmdlet to pass sdcli commands to filer.

Invoke-NaSsh " your sdcli command"

For more help on this cmdlet you can type in.

Get-Help Invoke-Nassh -detailed

Using Windows FailoverClusters module you can add the available disk to cluster as below.

Get-ClusterAvailableDisk | Add-ClusterDisk

gregintokyo
4,406 Views

Thanks Vinith.  I thought it would involve a combination of the two modules.

We have a situation where scripting of mounting of clustered LUNs will need to be done without involving SnapDrive.

Public