
Editing Connection to Veeam Backup Server
You can edit the following parameters for a connection to a Veeam backup server:
- Display name of the Veeam backup server
- IP address and port used to connect to the Veeam backup server
- Account to connect to the Veeam backup server
Changing Veeam Backup Server Name
To change a name for the Veeam backup server, use the following command:
veeamconfig vbrserver edit --name <new_vbr_name> for --name <old_vbr_name> |
veeamconfig vbrserver edit --name <new_vbr_name> for --id <vbr_id> |
- <old_vbr_name> — current name of the backup server.
- <new_vbr_name> — desired name for the backup server.
- <vbr_id> — ID of the backup server.
user@srv01:~$ veeamconfig vbrserver edit --name vbr01 for --id 4d15948e-c264-4c70-9088-e8a10f4555db |
Changing IP Address and Port for Veeam Backup Server
veeamconfig vbrserver edit --address <vbr_address> --port <vbr_port> for --name <vbr_name> |
veeamconfig vbrserver edit --address <vbr_address> --port <vbr_port> for --id <vbr_id> |
- <vbr_address> — IP address of the Veeam backup server.
- <vbr_port> — port over which Veeam Agent for Linux must communicate with Veeam Backup & Replication.
user@srv01:~$ veeamconfig vbrserver edit --address 172.17.53.1 --port 10006 for --name vbr01 |
Changing Account to Connect to Veeam Backup Server
|
If you change an account to connect to the Veeam backup server and then start a backup job targeted at the backup repository managed by this backup server, Veeam Agent for Linux will start a new backup chain on the backup repository. |
veeamconfig vbrserver edit --login <username> --domain <domain> --password <password> for --name <vbr_name> |
veeamconfig vbrserver edit --login <username> --domain <domain> --password <password> for --id <vbr_id> |
- <username> — a user name of the account that has access to the Veeam backup repository.
- <domain> — a name of the domain in which the account that has access to the Veeam backup repository is registered.
- <password> — password of the account that has access to the Veeam backup repository.
user@srv01:~$ veeamconfig vbrserver edit --login veeam --domain tech --password P@ssw0rd2 for --id 4d15948e-c264-4c70-9088-e8a10f4555db |
Changing Several Backup Server Parameters
user@srv01:~$ veeamconfig vbrserver edit --name vbr02 ---address 172.17.53.2 --port 10006 for --name vbr01 |