Recent content by bockhold

  1. B

    [SOLVED] Subscription key ckeck fails: "Connection error - Timeout."

    Ok, I found it: it's the change to Proxmox VE itself. I updated from 7 to 8 and with that the (automatic) behavior regarding IPv6 must have changed. A NIC which did not have an IPv6 address before did so now. And as the firewall did not allow such traffic, the verification of the subscription...
  2. B

    [SOLVED] Subscription key ckeck fails: "Connection error - Timeout."

    Thanks for your answer! $ ping shop.proxmox.com PING shop.proxmox.com(shop.proxmox.com (2a01:7e0:0:424::2)) 56 data bytes 64 bytes from shop.proxmox.com (2a01:7e0:0:424::2): icmp_seq=1 ttl=58 time=5.61 ms 64 bytes from shop.proxmox.com (2a01:7e0:0:424::2): icmp_seq=2 ttl=58 time=5.52 ms $ ping...
  3. B

    [SOLVED] Subscription key ckeck fails: "Connection error - Timeout."

    Hello, my subscription key ckeck fails with "Connection error - Timeout.". In the beginning this worked but not since 2023-08-10. The subscription is valid until 2024-07-30. Where can I check for a more detailed error log? Thanks!
  4. B

    [SOLVED] Backup PBS backups to Cloud

    You're welcome. The sync feature built into PBS works only if there is a second PBS on your remote site. If you have "just a normal server" there you could think about syncing your datastore via rsync. Or - if the connection is fast and reliable - you could mount a remote filesystem into your...
  5. B

    [SOLVED] Backup PBS backups to Cloud

    Is Proxmox Backup Server installed on the machine at OVH? If so you can use the "sync" feature (located as a tab at every datatstore) of PBS to copy (better: pull) your local backups to the remote machine.
  6. B

    [SOLVED] Backup PBS backups to Cloud

    Hi there! Question is, what does cloud mean to you? If you have your own servers you could install a PBS instance there and sync the datastore from your on-premises installation(s) with the sync functionality built into PBS. Regards
  7. B

    [SOLVED] Initial transfer of big datastore over slow connection

    I do, too. Especially as I mounted the shares in the first place via NFS to PBS 1 where the backups were created and now to PBS 2 to copy the contents to the local drive - doing nothing different. Unfortunately I currently don't have the time to do a full investigation... :(
  8. B

    [SOLVED] Initial transfer of big datastore over slow connection

    I forced a verify-run now by configuring a verify job with "skip verified: no". Works. And I found a better way to rename directories with bogus characters: for dir in *; do mv "${dir}" $(echo "${dir}" | sed -e 's/[^A-Za-z0-9._-]/:/g') done
  9. B

    [SOLVED] Initial transfer of big datastore over slow connection

    Thanks again for your help! This command helps to clean the directory names: mmv -r '2021-*T??*00*0?Z' '2021-#1T#2#3:00:0#6Z'. After that I do see all the snapshots in the GUI again. When trying to verify a selected snapshot I get SKIPPED: verify datastore-as:vm/100/2021-12-05T23:00:02Z...
  10. B

    [SOLVED] Initial transfer of big datastore over slow connection

    Thanks for your reply! Yes, there is metadata: # ls -alR datastore-as datastore-as: total 1048 drwxr-xr-x 4 backup backup 4096 Dec 29 08:00 . drwxr-xr-x 5 root root 4096 Jun 22 2021 .. drwxrwxrwx 1 backup backup 1056768 Jun 3 2021 .chunks -rw-r--r-- 1 backup backup 310...
  11. B

    [SOLVED] Initial transfer of big datastore over slow connection

    I've got a followup question here: this worked once and now I tried it again. After copying the datastore contents (and chowning the copied directories on disk to backup:backup) I see e.g. "VM 8 Groups, 0 Snapshots" in the web GUI. PBS recognizes the different VMs but does not see the individual...
  12. B

    [SOLVED] Initial transfer of big datastore over slow connection

    Great, thanks! During the rsync I should probably disable the services proxmox-backup and proxmox-backup-proxy to "freeze" the state of the datastore, correct?
  13. B

    [SOLVED] Initial transfer of big datastore over slow connection

    Hello, I've got a PBS pbs01 backing up some VMs adding up to something around 2 TB. This datastore I would like to sync to another off-site PBS pbs02. Unfortunately the network link between both PBSs comes across some relatively slow DSL-lines (~20 MBit/s). Is it therefore possible to i.e...
  14. B

    [SOLVED] Notifications for datastore operations

    Thanks for making this clear! Then for the future my (very low priority) feature request would be to be able to globally change the default.
  15. B

    [SOLVED] Notifications for datastore operations

    Hello everybody! With Datastore -> Options -> Notify I can configure, which user should be notified on which datastore operation. I can choose between "Default (Always)", "Always", "Errors" and "Never". Is it possible to change the "Default (Always)" to "Default (Errors)" system-wide? If this...