Search results

  1. D

    Backup entire hard drive with proxmox-backup-client , integrity of the data

    I have a question . i backup a file sytem hardrice with proxmox-backup-client Does the proxmox-client doing a "freeze" for the disk-access during the backup like with the qemu agent in the VM ? For example, if we have a database running on the server, a lots of data can be written during the...
  2. D

    NVMe to SATA

    maybe on your desktop it's m2/pciexpress and on the Dell Optiplex 7040 mff it's a m2/Sata. if it's a m2/sata, not compatible with the m2 card you have. https://community.spiceworks.com/topic/1920845-installing-an-m2-ssd-into-an-optiplex-7040 I can confirm that the Optiplex 7040 is compatible...
  3. D

    Backup one VM with multiple disk to multiple datastore or multiple pbs server

    i was thinking of a hack like this, but without the dirty bitmap, that's not possible. Thanks for the quick response.
  4. D

    Backup one VM with multiple disk to multiple datastore or multiple pbs server

    Bonjour, We want to test a configuration like this : We have a PVE host, with one big vm ( for nfs share/ or CIFS), running on an external ceph, with 100 To. We want to use the dirty bitmap for quick backup because it's a lot of small file...:mad: For example, we can have the VM with 4 disk...
  5. D

    GET /download: 404 Not Found / client.log.blob

    Backup Server 3.1-2 proxmox-backup-client version client version: 3.1.2 ( rpm generate from deb with alien ) the backup is create with a script #!/bin/sh LOG_FILE=/var/log/PBS_Backup_log.log ERR_FILE=/var/log/PBS_Backup_error_log.log exec 1>$LOG_FILE exec 2>$ERR_FILE export...
  6. D

    GET /download: 404 Not Found / client.log.blob

    I have this message in the task log on pbs : 24-01-09T06:00:08+01:00: GET /chunk 2024-01-09T06:00:08+01:00: download chunk "/mnt/datastore/Datastore1/.chunks/3efb/3efb5cf7f9d65ae3c6b215dab8efee97f9ab220b9ed82916f7319530a6dc4ed1" 2024-01-09T06:00:08+01:00: GET /download...
  7. D

    Unable to upload ISO image

    you can try to copy the file with scp.
  8. D

    Proxmox Cluster with local Gluster servers.

    In the past i was using glusterfs with promox, when we could have lxc on this storage. Not anymore. But it's not the only reason. Gluster for VM work fine, but you can have problem if you have to reboot a glusterfs server , for a kernel update for example. imagine you have a VM with a disk of...
  9. D

    Extend disk size /dev/mapper/pbs-root

    can we have the result of vgdisplay lvdisplay
  10. D

    Extend disk size /dev/mapper/pbs-root

    It's a lvm partition; you have to resizez the PV after resizing the partition. pvresize /dev/sda3 with that you vg should have free space now. verify with vgdisplay and after that you have to extend the lv volume for the root partition for example for adding 4Go to the partition ...
  11. D

    CPU Usage Goes to 100% After Backup Job Completes

    Same problem here . High cpu for the kvm process, but nothing the vm itself.
  12. D

    Proxmox VE 8.1 released!

    I use proxmox on my laptop at work ( hp elitebook), and i think since the new version( kernel related ?) , my vm is crashing, like one time per day in average. Before no problem at all. On the next crash, i will boot on the 6.2 kernel to see if it's the problem...
  13. D

    [SOLVED] Is there any way to keep the NIC from going down after PCIe change...

    Another "dirty" solution is to put net.ifnames=0 biosdevname=0 in /etc/default/grub With that we have the "old" ethX interface coming up instead of enpsxsx .... Very useful with boot on san proxmox with différent hardware configuration...
  14. D

    Mail filter before Spam scan

    Thanks for the answer? After analysis, it seems that with this config, SpamAssassin is still uses, but i have to trace that URIBL is contacted, so it seems good
  15. D

    Mail filter before Spam scan

    Bonjour, in order to reduce the number of connexion to URIBL, i want to quarantaine/drop some emails which i know are spam, before sending the request to spamassassin. I create a rule in priority 97 with : Action : - modify the subject for knowing if the rule work ( with something i can...
  16. D

    [TUTORIAL] Create a Proxmox 6.2 cluster GlusterFS storage

    its' possible. you can create a test volume for testing the procedure
  17. D

    GlusterFS storage cluster error when creating VM

    Sadly, you can't put container on the glusterfs storage if you mount with proxmox.
  18. D

    [TUTORIAL] Create a Proxmox 6.2 cluster GlusterFS storage

    1) you're screwed. --> split brain, and screwed x10 if you have a "raid0" gluster. 2) if you have a "raid1" gluster, use the third server for the quorum with arbiter bricks. Something like that after adding the third node gluster volume add-brick Name_of_the_cluster replica 3 arbiter 1...