Search results

  1. ghusson

    No network connection

    Check your gateway IP : .1 or .254 ? Is the interface in the bridge (conf applied ?) : brctl show
  2. ghusson

    Error ZFSPool and crash Proxmox

    Hello. The problem can be anywhere on the chain : processor, RAM bus, RAM, PCI or SATA or whatever bus, RAM of the disk, disk chip or firmware, disk itself. We cannot tell. But it is often a disk or RAM problem (if the RAM is not ECC). Just to check, is your disk direct attached, it is not a...
  3. ghusson

    Filling in the rpool

    Hello. It seems that your antivirus is scanning the whole backup files. Thus it takes long time. Thus the old backup file cannot be deleted by the backup rotation and the system. Thus your storage is full. And when you unmount or if you stop and start kesl, the space is cleared. Solution : use...
  4. ghusson

    [SOLVED] "fast" disk access for a VM inside HA and shared storage

    My advices for disk performance : - use local disk storage - read this if you want extra speed be be carefull with data loss with writeback : https://pve.proxmox.com/wiki/Performance_Tweaks
  5. ghusson

    [SOLVED] Delete stuck snapshot

    Maybe you can try the elevator and the IO scheduling ? https://pve.proxmox.com/wiki/IO_Scheduler + ionice 8 in /etc/vzdump.conf
  6. ghusson

    Bad Disk Performance with CEPH!

    Hello. From my experience, monitoring software database is the worst case scenario for IOs. Furthermore in your case : small writes (thus read, modify, write), with synchronous random writes, and with synchronous network replication on other nodes ! Maybe you are experiencing IOs starvation on...
  7. ghusson

    [SOLVED] Delete stuck snapshot

    Hmmm... And what activity makes those IOs ?
  8. ghusson

    Network UPS Connect (NOT HOST)

    Indeed, nut-scanner does not need nut-snmp.
  9. ghusson

    Config backup feature

    Hello. All the needed configuration is in /etc. Personally I backup /etc /root /opt to be sure to get any customization I would have made. You can use tar and scp to get the backup and automatize it with Ansible for example. You can use tools like rsnapshots to backup the configuration files...
  10. ghusson

    Network UPS Connect (NOT HOST)

    Hello. I think the SNMP NUT driver is in this separated package and that it is needed. Personally, I let Proxmox host shutdown the CT/VMs in accordance with the priority I defined in Proxmox VM/CT settings. thus I configure NUT only on proxmox hosts, not in VM/CTs.
  11. ghusson

    Network UPS Connect (NOT HOST)

    Sorry, package name was not good (my mistake) : apt install nut-snmp man snmp-ups
  12. ghusson

    [SOLVED] Delete stuck snapshot

    Ohhh... Good to know fiona, thanks !
  13. ghusson

    [SOLVED] Delete stuck snapshot

    Thank you Fiona. I edited my post. Yest it is the first thing to try, I agree.
  14. ghusson

    [SOLVED] Delete stuck snapshot

    So Unspec, maybe you should try to change the scheduler algorithm to CFQ ? nano /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="... elevator=bfq" update-grub
  15. ghusson

    [SOLVED] Delete stuck snapshot

    Bandwith Bandwidth should apply but maybe IOs will still be high. Why do you think ionice 8 won't do anything ? From the documentation : https://pve.proxmox.com/pve-docs/vzdump.1.html : ionice: <integer> (0 - 8) (default = 7) Set IO priority when using the BFQ scheduler. For snapshot and...
  16. ghusson

    [SOLVED] Delete stuck snapshot

    Ok. Indeed, this won't help you when backuping containers.
  17. ghusson

    Network UPS Connect (NOT HOST)

    I think you didn't search too much @greenhornet ... apt install snmp-ups man snmp-ups
  18. ghusson

    [SOLVED] Delete stuck snapshot

    Look at "advanced" tab in the backup configuration, and change bandwidth limit (first, try to take 75% of the used bandwidth during backups). But with containers, I fear that IOs will be the problem (plenty of small files)... So maybe try to set the IO workers to 4 ? I never tried this.
  19. ghusson

    Help to create an HA system

    Hello, if you can't afford a third server or doubt of CEPH stability with a 3rd server being different... Why wouldn't you put an effort over SQL database clustering ? it seems it can use WSFC, Windows Server Failover Cluster. I didn't dig into it but this could be a solution. At the begining of...