Short Description
Adds HPE 3PAR StoreServ storage systems to Veeam Backup & Replication.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus
Storage System: HPE 3PAR StoreServ
Syntax
This cmdlet provides 2 parameter sets.
- For authenticating with the storage using user name and password:
Add-HP3Storage -Name <string> -UserName <string> -Password <string> [-Description <string>] [-Url <string>] [-Proxy <IProxy[]>] [-iSCSI] [-NFS] [-FibreChannel] [-WhatIf] [-Confirm] [<CommonParameters>] |
- For authenticating with the storage using credentials:
Add-HP3Storage -Name <string> -Credentials <CCredentials> [-Description <string>] [-Url <string>] [-Proxy <IProxy[]>] [-iSCSI] [-NFS] [-FibreChannel] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet adds a selected HPE 3PAR StoreServ storage to Veeam Backup & Replication.
When adding a storage, you will need to provide either username/password or credentials. Use an appropriate parameter set for each case.
When you add a storage to your management console, Veeam Backup & Replication automatically rescans the storage infrastructure. To rescan the storage infrastructure manually, run Sync-HP3Storage or Sync-HP3Volume.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
UserName | Specifies the user name you want to use for authenticating with the storage. | True | Named | False | False |
Password | Specifies the password you want to use for authenticating with the storage. | True | Named | False | False |
Credentials | Specifies the credentials you want to use for authenticating with the storage. | True | Named | False | False |
Name | Specifies the storage IP address or DNS name. | True | Named | False | False |
Description | Specifies the description of the storage. | False | Named | False | False |
Url | Specifies the HPE 3PAR Web Services API URL. The HPE 3PAR Web Services API delivers a programming interface for performing storage management tasks with HPE 3PAR StoreServ storage systems. | False | Named | False | False |
Proxy | Specifies the array of proxies you want to use with this storage. If set, Veeam Backup & Replication will use the selected proxies. If not set, Veeam Backup & Replication will use automatic proxy selection. | False | Named | False | False |
iSCSI | Indicates that the storage works over iSCSI protocol. | False | Named | False | False |
NFS | Indicates that the storage works over NFS protocol. | False | Named | False | False |
FibreChannel | Indicates that the storage works over FibreChannel protocol. | False | Named | False | False |
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False | False |
Confirm | Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example
This example shows how to add the HPE 3PAR StoreServ storage to the backup infrastructure using credentials.
You will need to perform the following steps:
- Run Get-VBRCredentials to get a credentials record for the storage. Save the result to the $credentials variable.
- Run Get-VBRViProxy to get a backup proxy that will be used for storage rescan and Backup from Storage Snapshots. Save the result to the $proxy variable.
- Run Add-HP3Storage with the $credentials and $proxy variables.
PS C:\PS> $credentials = Get-VBRCredentials -Name "HPE 3PAR StoreServe Administrator" PS C:\PS> $proxy = Get-VBRViProxy -Name 172.18.21.25 PS C:\PS> Add-HP3Storage -Name 172.18.44.8 -Credentials $credentials -Proxy $proxy -Description "HPE 3PAR StoreServe Storage" -Url https://172.18.44.8:8080 |
Related Commands