Hello, tell me if I'm doing everything right or can I improve something?
There is a file server from which I backup to PBS with a script. after completion, an email with the result is sent.
[google translate]
+
data transfer takes a very long time. Network speed is 10 Gbps, disks are in SAS raid
Thank you for your time.
There is a file server from which I backup to PBS with a script. after completion, an email with the result is sent.
[google translate]
Bash:
#!/bin/bash
export PBS_PASSWORD=MyPasswordSecret
export PBS_LOG=error
proxmox-backup-client backup root.pxar:/ public.pxar:/mnt/public repository.pxar:/mnt/repository --repository root@pam@backup-server:MD1-4T --backup-id storage.server.local
proxmox-backup-client prune host/storage.server.local --repository root@pam@backup-server:MD1-4T --keep-last 14
export PBS_PASSWORD=
cat "/opt/bin/backup.log" | mail -s "backup log" me@mail.info
+
data transfer takes a very long time. Network speed is 10 Gbps, disks are in SAS raid
Thank you for your time.