Recent content by Dexter23

  1. D

    PBS Local Sync to Remote PBS Stuck

    PBS Local was freeze i force shutdown and poweron, this is the last portion of the journal log:
  2. D

    PBS Local Sync to Remote PBS Stuck

    It has always worked, we had to delete and recreate the VM due to software problems and so now it has to reload the full backup but the available bandwidth has always been the same even before when it worked, only it is not normal that I do not even see the progress in percentage? Is there a log...
  3. D

    PBS Local Sync to Remote PBS Stuck

    The bandwidth available on the local PBS is 20 Mbit/s Download and 6Mbit/s Upload. This is the local datastore to sync to the remote: This is the datastore from the remote PBS: Network Traffic PBS Local: Network Traffic PBS Remote:
  4. D

    PBS Local Sync to Remote PBS Stuck

    Nothing has changed at the moment no new entries in the task viewer is the same as the two screenshot above, it seems stuck as before, is there a log file to analyze to understand what it is doing?
  5. D

    PBS Local Sync to Remote PBS Stuck

    I upgrade the PBS to the latest and reboot, now i launch the Sync manually PBS Local: PBS Remote:
  6. D

    PBS Local Sync to Remote PBS Stuck

    Hi root@pbs01:~# proxmox-backup-manager version --verbose proxmox-backup 4.2.0 running kernel: 6.17.4-1-pve proxmox-backup-server 4.2.0-1 running version: 4.1.0 proxmox-kernel-helper 9.0.4...
  7. D

    PBS Local Sync to Remote PBS Stuck

    Hi have configure a push sync from local to remote pbs, but since I configured it it has never worked: PBS Local: PBS Remote:
  8. D

    Error Backup Server

    Hi I fix the problem by replace ram, thanks.
  9. D

    Error Backup Server

    I mean that i remove manually the backup on the PBS which have the verify state failed, this night the backup was succeed from the pve: 103: 2026-02-17 22:53:33 INFO: 99% (1.5 TiB of 1.5 TiB) in 1h 53m 30s, read: 138.1 MiB/s, write: 3.0 MiB/s 103: 2026-02-17 22:53:40 INFO: 100% (1.5 TiB of 1.5...
  10. D

    Error Backup Server

    Hi everyone first time experience this type of error on PBS, after quick search is possible related to ram error as far as i understand. The Host is a Fujitsu Esprimo with 2x4gb of ram non-ecc. I can try remove the incrimanted backup and see if the next goes fine? ERROR: backup write data...
  11. D

    [SOLVED] Storage usage

    Yeah i try now on a pve test and it works as you said is only print out every vm disk that not have the "none" value on the name or refreservation, after that i run the command: zfs set refreservation=none zpoolname/vm-id-disk-id For every disk Thanks
  12. D

    Script for monitor ZFS Usage

    Yes i try now with clone the vm disk become sparse.
  13. D

    Script for monitor ZFS Usage

    I enable the thin provision but the space remain the same as before:
  14. D

    Script for monitor ZFS Usage

    I see that the command "pvesm" on Proxmox Backup Server is there a equivalent command to retrive this usage%? As the WebUI Shows: UPDATE: Really i don't need to make a script also for PBS because on PVE has already the PBS Storage for space monitor.
  15. D

    Script for monitor ZFS Usage

    Anyway i modify the script using the command "pvesm status" #!/bin/bash THRESHOLD=80 EMAIL="proxmox@mydomain.tld" HOSTNAME=$(hostname) pvesm status | grep "active" | tr -d '%' | awk -v limit="$THRESHOLD" '$7 >= limit {print $1, $2, $7}' | while read -r NAME TYPE USAGE; do SUBJECT="Storage...