Search results

  1. C

    Restore single Files from Backup

    Hi :) The single file restore has been introduced in newer Proxmox VE Versions, your 6.3-3 is pretty old, you should upgrade. After the upgrade that functionality should be avaible.
  2. C

    [TUTORIAL] Editing PBS backups by adding comment/note

    Hi :) Thank you for your work! I back up the PVE hosts to the same datastore so I had to add handling for backups of the type "host", maybe you could add that to your script as well :) I just skipped them as the name of the snapshot can be customized at backup creation anyway.
  3. C

    Cluster wide Backup delay per node

    you could split the VMs into multiple jobs that run at different times. But yes, I would like an option in PVE to limit the amount of concurrent backup jobs just like you can limit the amount of concurrent jobs of migrations
  4. C

    File restore in a VM / LXC

    Yeah that is what Thomas discussed in this, one approach would be trying to do this with the qemu guest agent. This is installed on basically all VMs anyway and doesn't require any more configuration.
  5. C

    File restore in a VM / LXC

    Hi, check this: https://bugzilla.proxmox.com/show_bug.cgi?id=3501 That might answer your question :)
  6. C

    [SOLVED] Setup Reverse Proxy (nginx) for backup client

    HAProxy does also support HTTP/2 and might be a bit more performant than apache2.
  7. C

    Option to Delete Backups after VM was deleted

    Hi, no there is currently no built-in option for this. You could code a script for this yourself using the API, but I would like to see this as a feature implemented as well :)
  8. C

    PBS iSCSI storage

    So you mean use an iSCSI LUN as the storage for PBS? Just mount the lun on your PBS server and point a datastore at it, done.
  9. C

    PBS single file restore with a PVE installation

    Yeah, the proxmox-backup-client map doesn't work that well with lvm because you have two LVMs with the same ID and name on your VM. Maybe a future improvement for the proxmox-file-restore client? :)
  10. C

    PBS single file restore with a PVE installation

    Is there a "CLI Browser" for the file systems? So you can navigate in the folders and select the files you want to extract?
  11. C

    Single-file restore and LVM

    You don't need PBS 2.x to use the file restore feature, only an up-to-date PVE 7.x installation
  12. C

    offline backup

    Hello, take a look at this solution I posted: https://forum.proxmox.com/threads/copy-backups-to-external-drive.88791/#post-389048 That is probably the way you want to go about this.
  13. C

    how to get PBS storage free space

    You could also use the API, that way you don't need to execute a cli command on the pbs host
  14. C

    Proxmox - PVEAuditor does not grant access to storage

    Hi, also wanted to chime in here, I ran into the same issue. Have you decided on which option will be implemented yet? Or is the 2nd option already implemented?
  15. C

    port 8007 and port forwarding

    Both the GUI and Remote Sync/Backup Jobs use the API. The API is avaible on Port 8007. It would probably be best for you to implement a firewall so only authorized IPs can access Port 8007 on your Server.
  16. C

    [SOLVED] Restoring windows files on ReFS - connection error

    You can do a file-level restore in a bit more manual way by using the proxmox-backup-client map command. This maps the disk to a read-only loopback device. You should then be able to mount refs by hand. This requires a refs driver... There is a company well known for their filesystem ports that...
  17. C

    Backup on powered off VMs

    That is expected. When VMs are shut down the qemu process is closed. The qemu process is the one tracking your changes in the blocks of the disk. It will need to read the entire disk again, but it will only transfer missing chunks (as you already said). The Proxmox Team said they want to think...
  18. C

    backup vm pve to pbs, how to enable incremental

    thats true :) You don't want to have too much io wait. Just wanted to point that part with network traffic out as a lot of people think that if the dirty bitmap is destroyed it will also upload all the chunks to the PBS server again. That is not what is happening.
  19. C

    proxmox-backup-proxy.service is not running on ipv4

    Hi, the install from ISO is also a relativly vanilla debian install. Is PBS reachable with its IPv4 adress? You only show the netstat output, read here why netstat doesn't always list services bound to both IPv4 and v6...
  20. C

    backup vm pve to pbs, how to enable incremental

    This would only stress the disk the VM is on. There is no additional traffic for VMs that don't have dirty bitmaps, it just takes longer and needs to read the entire disk.