Search results

  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...
  16. D

    Script for monitor ZFS Usage

    So if i understand correctly if i do this command: zfs list -H -oname,refreservation | grep -Ev "none" | awk '/vm-/ {print $1'} | while read disk; do echo "zfs set refreservation=none $disk"; done In theory if that vm space occupied is for example 500gb but the size disk of the VM is 700GB the...
  17. D

    Script for monitor ZFS Usage

    So if i uderstand correctly, the option "sparse 1" is when this checkbox is checked? But if i selected the existing file of vm disk is not reduce the allocated space right?So it doesn't make any changes if i enable this option after?
  18. D

    Script for monitor ZFS Usage

    This is the script: #!/bin/bash # Managed by Ansible THRESHOLD=80 EMAIL="proxmox@mydomain.tld" HOSTNAME=$(hostname) # 1. Get the names of all existing ZFS pools POOLS=$(zpool list -H -o name) for POOL in $POOLS; do # 2. Extract USED and AVAIL in bytes (-p) for calculation precision...
  19. D

    Script for monitor ZFS Usage

    My goal on this script is to have the same usage that WebUI is Showing is possible?
  20. D

    Script for monitor ZFS Usage

    root@pve01:~# zpool status pool: rpool state: ONLINE status: Some supported and requested features are not enabled on the pool. The pool can still be used, but some features are unavailable. action: Enable all features using 'zpool upgrade'. Once this is done, the pool may no...