Search results

  1. C

    Backup PVE using PBS

    You already can do host level backups of your PVE instance to PBS! And they are incremental just like for VMs/CTs. It just is not integrated in the WebUI and you will have to understand on your own what should be included/excluded from the file level backup, handling of the encryption keys ecc...
  2. C

    CT: control Internet bandwidth ONLY

    Hi, yes you can bandwidth limit the containers virtual interface using tools like tc https://man7.org/linux/man-pages/man8/tc.8.html or wondershaper https://github.com/magnific0/wondershaper Edit: Okay, maybe wondershaper is not capable of filtering traffic based on destination IP, so you will...
  3. C

    proxmox-backup-client failed

    Seems this has already been fixed, package is in pve testing repo for now https://forum.proxmox.com/threads/pbs-datastore-in-var-lib-vz.80203/post-354883
  4. C

    [SOLVED] Can't access PBS from one node

    There is indeed an issue, but according to the devs it has already been fixed, just waiting in the testing repo before being pushed out https://forum.proxmox.com/threads/pbs-datastore-in-var-lib-vz.80203/post-354883
  5. C

    [SOLVED] small router vm restored from pbs won't boot, restored from old vzdump does boot okay.

    Your PBS backup might be corrupt, have you checked by verifying the backup? Is this reproducible (new backup followed by immediate restore)? Also make sure that you are running the latest versions of PBS client and PBS server. Edit: Sorry, didn't see your included pveversions.txt
  6. C

    [SOLVED] Can't access PBS from one node

    Hi, how did you setup the PBS storage? Did you follow the docs? https://pbs.proxmox.com/docs/pve-integration.html Do you have the correct password for accessing the PBS instance on pve1? This should be located in a file on /etc/pve/priv/storage/ on both nodes and synced via the proxmox cluster...
  7. C

    Migrate backup to another datastore

    Hi, there might be several ways to achieve this, non of which I have tested so you might want to TEST THIS ON A NON-CRITICAL SETUP FIRST. I do not know if this is supported, but you could try to use the proxmox-backup-manager remote functionality of PBS to sync the two local datastores. See...
  8. C

    SOLVED - Slow speed on upload from Proxmox (or download from Proxmox)

    I'm glad it worked out for you! Note that scp is really old now and there are ongoing discussions on deprecating it, see this LWN article for example https://lwn.net/Articles/835962/ Using more modern tools is a good idea here, sometimes it is just time to let go of old habits...
  9. C

    proxmox-backup-client failed

    Seems like a regression introduced lately. @oguz do you know of any recent patch which might have lead to this behavior? Or are we doing something wrong here?
  10. C

    proxmox-backup-client failed

    Okay, so I was able to reproduce this. In order to get pvestatd to work as expected I had to change the /etc/pve/storage.cfg server localhost username root to server IP username root@pam Edit: Hostname instead of localhost works as well for me. Just localhost will not work... Edit: 127.0.0.1...
  11. C

    SOLVED - Slow speed on upload from Proxmox (or download from Proxmox)

    Might be related to https://winscp.net/eng/docs/faq_slow
  12. C

    Upgrade without reboot

    Well, the kernel will play a role and it might be fine to run on the older kernel for minor releases. Why not perform the 6.2 to 6.3 upgrade at the maintenance window altogether?
  13. C

    SOLVED - Slow speed on upload from Proxmox (or download from Proxmox)

    Okay, so what tools do you use to download the backup files? In order to test the speed to your Proxmox host you should use tools like fio https://github.com/axboe/fio to test the IO speed on your LAN, the speedtest with the inet does not say much in this case.
  14. C

    Upgrade without reboot

    You will have to reboot, as there will be a new kernel verison... pveupdate and pveupgrade are small wrappers around apt-get which make sure to show you additional PVE specific infos. You can check out their functionality with cat /usr/bin/pveupdate and cat /usr/bin/pveupgrade (note that these...
  15. C

    SOLVED - Slow speed on upload from Proxmox (or download from Proxmox)

    Hi, what do you mean by "download a backup"... Do you mean you are trying to perform a restore of a backup? Please check the CPU load, disk- and network-IO on your Proxmox Server while doing the restore (if that is what you are doing). Also, you might specify which hardware the server is running...
  16. C

    proxmox-backup-client failed

    Hi, try to restart proxmox-backup-proxy and proxmox-backup services by systemctl restart proxmox-backup proxmox-backup-proxy after unlocking the ZFS dataset containing the chunkstore. Further, check the status by systemctl status proxmox-backup proxmox-backup-proxy. Also check that the...
  17. C

    How to browse encrypted Backups?

    And you are able to use proxmox-backup-client map as well as proxmox-backup-client mount with encrypted backups in order to create a loopback device for VM disks or a fuse mount for LXC or host filesystems.
  18. C

    [SOLVED] backup Storage pool

    Hi, if by whole storage pool of your data you mean a filesystem containing the data that is mounted on one of the pve hosts than that is a simple task. Just install the proxmox-backup-client on the pve node and perform a backup as described in the docs...
  19. C

    virsh control

    pvesh get /cluster/resources --type vm --noborder | grep lxc This should get you started...
  20. C

    Unable to mount backup

    You are missing the --examine flag... The thing is that you are operating on a backup in readonly mode, so from that point of view you are safe. Anyway, is it not way easier in your case to do a restore of the VM an copy whatever data you need by ssh or some other means? I mean mounting the raid...