Rubrik

From roonics
Revision as of 14:35, 13 August 2019 by Jlambert (talk | contribs)
Jump to navigation Jump to search

Rubrik

Useful Commands

Connecting to Rubrik via Powershell

  • Download and install the Rubrik PowerShell addon:
https://www.rubrik.com/blog/get-started-rubrik-powershell-module/
  • Once downloaded, open PowerShell and connect to your Rubrik:
$Cred = Get-Credential
Connect-Rubrik -Server x.x.x.x -Credential $Cred

Editing Enable storage array integration on all virtual machines

Connect to the Rubrik run the command below to enable storage array integration on all virtual machines:

Get-RubrikVM | Set-RubrikVM -UseArrayIntegration 1
  • If you wish to disable storage array integration on all virtual machine run the following command:
Get-RubrikVM | Set-RubrikVM -UseArrayIntegration 0

Depending on how many virtual machines you are backing up this may take some time.