Search results

  1. bbgeek17

    LACP on Migration

    Hi @Tipenso , Your current L2+L3 setup refers to MAC + IP addressing. A single migration from host A to host B will use a single combination of source/destination MAC and IP, meaning only one port will be utilized. Ten concurrent migrations from host A to host B will still use the same single...
  2. bbgeek17

    Web portal issue after updates

    The only portion that is modified by those scripts is the web interface related files. Sounds like you are in a good place since you've rolled back and things are working for you, Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
  3. bbgeek17

    Web portal issue after updates

    Hi @uppsju , welcome to the forum. Out of curiosity: what do you mean "rolling back the updates"? You best way to troubleshoot the situation is by reaching out to the authors of the PVE modifications that you likely installed to remove a reminder that non-subscription repository is not...
  4. bbgeek17

    Cluster + shared storage

    Hello @bitlan, welcome to the forum. Starting with PVE 9, you now have the ability to preview snapshot technology that’s compatible with iSCSI-type storage: https://kb.blockbridge.com/technote/proxmox-qcow-snapshots-on-lvm/ Even if you use this option, whether your overall infrastructure will...
  5. bbgeek17

    Can't access my server on my web browser

    Hello, @pipsqueak . Welcome to the forum. What is the IP of the PVE server? What is the IP of your workstation? What is the IP of your gateway? Can you ping the PVE server? Can you ssh into PVE server? What is the output of "ip a" on PVE? What is the corresponding output from your workstation...
  6. bbgeek17

    clone vm fails - beginner problem?

    You could also try to run "sync" inside the VM prior to cloning. Cheers Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
  7. bbgeek17

    VirtIO-SCSI but for NVME

    To answer your initial question directly: in current versions of QEMU/Proxmox, emulating an NVMe device is unlikely to deliver a dramatic performance improvement. The reason lies in understanding what "virtio" actually is. Virtio is a paravirtualized I/O framework that enables efficient...
  8. bbgeek17

    VirtIO-SCSI but for NVME

    There are always trade-offs. In general, NVMe creates multiple queues for I/O processing compared to iSCSI/SCSI. However, each queue consumes CPU. So you may get better I/O performance, but in a shared virtual environment, you may adversely affect other aspects of the infrastructure. We've done...
  9. bbgeek17

    VM network interruptions and Conntrack weirdness

    One other thought, so you don't experiment on your production systems - install a PVE as VM and get the process worked out there. Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
  10. bbgeek17

    VM network interruptions and Conntrack weirdness

    Curious. Perhaps try: echo "options nf_conntrack nf_conntrack_max=524288" > /etc/modprobe.d/nf_conntrack.conf You'll need to reboot, or unload/reload the module which will cause connection reset. Not sure, of the top my head, what could be causing the reversion. Blockbridge : Ultra low...
  11. bbgeek17

    VM network interruptions and Conntrack weirdness

    Don't forget to ensure that you make the change persistent, or you will be in for a surprise sometime after next reboot. I'd even recommend testing it by rebooting the host and checking that it was set again. Blockbridge : Ultra low latency all-NVME shared storage for Proxmox -...
  12. bbgeek17

    Proxmox VE Web GUI is a Blank Page

    You should ask the authors of those scripts. The information for proper repository context is here: https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_no_subscription_repo You'd need to use an editor, I recommend Emacs. Blockbridge : Ultra low latency all-NVME shared storage for...
  13. bbgeek17

    Upgrade v8 to v9 and Disk for TrueNAS OS is gone

    Hi @dhenrickson , welcome to the forum. Disk naming (indexing) can and does vary across the VMs. Whether the boot disk is disk-0 or disk-1 is completely irrelevant. As @leesteken quickly pointed while I was typing - the error message is unrelated to disks and has to do with the highlighted...
  14. bbgeek17

    Proxmox VE Web GUI is a Blank Page

    Coincidentally those two files are modified by various helper scripts to disable the reminder that no-sub repo is not suitable for production. A message informing you that a package cannot be reinstalled/downloaded means that you do not have appropriate repository enabled. It could be an...
  15. bbgeek17

    [SOLVED] VM state goes to "io-error" - due to qemu-server <9.0.8 - bug with qcow and LVM

    I just noticed that in your qmp_capabilities output, the block related to disk-0 contains: "io-status":"nospace" That’s a important clue. My guess is that the LV is potentially not properly sized. You have a 10 GiB LV with a 10 GiB QCOW image. Small enough that most of the clusters (≈95%) are...
  16. bbgeek17

    Proxmox VE Web GUI is a Blank Page

    Hi @hatemyway , welcome tot he forum. Sounds like this has worked previously? Can you think of anything that has changed? A common occurrence is people installing community scripts or other tools to "improve" PVE usability. Do you have any browser extensions, and if you do - have you tried...
  17. bbgeek17

    HA migration issue with Linux VMs on Proxmox 9.0.10 (FC LVM datastore)

    HA is a complex topic. If you have a cluster of nodes and one node becomes isolated, the remaining nodes holding the majority quorum can vote the isolated node out and take over services. This is normal PVE HA operation. If a single node loses storage connectivity, for HA to act it would...
  18. bbgeek17

    Proxmox on IBM with hyperswap function

    This articles may be helpful to you as you fine tune your environments: https://kb.blockbridge.com/technote/proxmox-lvm-shared-storage/ https://kb.blockbridge.com/technote/proxmox-tuning-low-latency-storage Blockbridge : Ultra low latency all-NVME shared storage for Proxmox -...
  19. bbgeek17

    [SOLVED] VM state goes to "io-error" - due to qemu-server <9.0.8 - bug with qcow and LVM

    @nwad , to ensure that you don't miss the output from the console you can execute these commands via SSH terminal: script serial.log qm terminal [vmid] and leave it running. Another option that we use in our testing is to add char device: --args -chardev...
  20. bbgeek17

    VM network interruptions and Conntrack weirdness

    Hi @ManFriday , Out of curiosity - how large if your environment? Nodes, VMs, etc? What is your current max? sysctl net.netfilter.nf_conntrack_max Write a basic loop to log number of connections, every 1-10seconds, along with date. That should tell you average use, as well as peak times...