Recent content by layer7.net

  1. L

    596 Connection timed out if the API is asked for /qemu otherwise all fine

    Hi, we have here a strange behavior of the proxmox API. pve-manager/9.1.2/9d436f37a0ac4172 (running kernel: 6.17.2-2-pve) If we ask via API for /api2/json/nodes then all is fine and the response comes immediate: ::ffff:192.168.178.20 - root@pam [23/01/2026:15:54:56 +0100] "GET...
  2. L

    storage migration failed: block job (mirror) error: drive-virtio1: File too large (io-status: ok)

    Hi, with this pve version: proxmox-ve: 8.4.0 (running kernel: 6.8.12-10-pve) pve-manager: 8.4.5 (running version: 8.4.5/57892e8e686cb35b) proxmox-kernel-helper: 8.1.4 proxmox-kernel-6.8.12-13-pve-signed: 6.8.12-13 proxmox-kernel-6.8: 6.8.12-13 proxmox-kernel-6.8.12-10-pve-signed: 6.8.12-10...
  3. L

    PVE 8.3 Dell PE M520 H310 mini - Hard disk not found

    Hi, even with the latest 8.4.1, it does not work IF you have 2 raid arrays. We had here a R720XD with H310 controller and 2 arrays: 1x raid 1 with 2 disks 1x raid 50 with 12 disks resulting in DMAR DMA errors and you wont see both arrays. BUT if you remove the 2nd array, THEN you will see...
  4. L

    can't verify chunk, load failed - store 'backup', unable to load chunk '' - Too many open files (os error 24)

    Hello @waltar Thank you very much for your time and response! I actually checked it already and the open files are limited to the default 1024. But the system is working with a quiet higher open files count without issues: lsof | wc -l 10992 As far as i know zfs has its own open files...
  5. L

    can't verify chunk, load failed - store 'backup', unable to load chunk '' - Too many open files (os error 24)

    Hi, during backup via PVE to an external PBS server we see: 2024-12-30T08:35:02+01:00: Automatically verifying newly added snapshot 2024-12-30T08:35:02+01:00: verify backup:vm/221/2024-12-30T06:48:24Z 2024-12-30T08:35:02+01:00: check qemu-server.conf.blob 2024-12-30T08:35:02+01:00: check...
  6. L

    API update vm will fail while proxmox UI will succeed

    Hi, i am also wondering myself. But in fact, when we see this in the ProxmoxUI: create full clone of drive ide0 (nfs-server:321/vm-321-cloudinit.qcow2) Formatting '/mnt/pve/nfs-server/images/457/vm-457-cloudinit.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off preallocation=metadata...
  7. L

    API update vm will fail while proxmox UI will succeed

    Hi, thank you for pointing us to this! After every request we do, we are checking using UPID the status of the task before we issue the next command. So for now that does not seem to be the case. During our debug we did: - issue clone -> waiting for task done via code - issue config ->...
  8. L

    API update vm will fail while proxmox UI will succeed

    Hi, ok after some deeper debugging it turned out that the TASK OK from the clone is actually the problem: create full clone of drive ide0 (nfs-server:321/vm-321-cloudinit.qcow2) Formatting '/mnt/pve/nfs-server/images/457/vm-457-cloudinit.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off...
  9. L

    API update vm will fail while proxmox UI will succeed

    Hi Fabian, thank you for your time! The post request from the browser is: virtio0 "nfs-server:322/base-322-disk-0.qcow2/110/vm-110-disk-0.qcow2,discard=on,iops_rd=50001,iops_wr=50001,mbps_rd=251,mbps_wr=252,size=2G" digest "a0ab606e900238de1632c6834b53c5268c18076b" background_delay...
  10. L

    API update vm will fail while proxmox UI will succeed

    Hi, this is from: pve-manager/8.1.10/4b06efb5db453f29 (running kernel: 6.5.13-3-pve) A qcow2 based template on an NFS server is link cloned on the same NFS server Doing this via API will result in tasks with this output: create full clone of drive ide0...
  11. L

    PBS will show wrong datastore size when zfs is used

    Hi @ggoller ! Thank you for this high quality reply! zfs dataset: ``` # stat -f teststore File: "teststore" ID: 5f7c6ce8003ab807 Namelen: 255 Type: zfs Block size: 131072 Fundamental block size: 131072 Blocks: Total: 8388608 Free: 8388607 Available: 8388607 Inodes: Total...
  12. L

    PBS will show wrong datastore size when zfs is used

    Hi, a zfs dataset with 1 TB of quota was created. A new datastore with the path of the zfs dataset was created. The "df" command on the CLI will show the correct size of 1 TB. But the PBS UI will show the size of the whole zpool. Is this a bug or wanted behavior? I would expect that the...
  13. L

    migration aborted (duration 00:00:00): target node is too old (manager <= 7.2-13) and doesn't support new cloudinit section

    Hi, it seems that was solved by updating the 7.3.3 install according to Proxmox Bugtracker And yes, the VM in question started to transfere without issues :-) I hope all of them will do.
  14. L

    migration aborted (duration 00:00:00): target node is too old (manager <= 7.2-13) and doesn't support new cloudinit section

    Hi, i had a similar issue, when migrating from 7.3.3 to 8.0.3 Rebooting the 8.0.3 ( that was updated recently ) helped to have the problem looking another way. Now i receive: 2023-08-09 16:22:10 ERROR: migration aborted (duration 00:00:00): internal error: cannot check version of invalid...
  15. L

    [SOLVED] Help deleting pvefw rule using digest through api2

    Hi, DELETE /api2/json/nodes/{node}/qemu/{vmid}/firewall/ipset/{name} as: /api2/json/nodes/n1/qemu/100firewall/ipset/ipfilter-net0 with $params = array( 'name' => 'ipfilter-net0', 'node' => 'n1', 'vmid' => '100', 'force' => true )...