Recent content by VictorSTS

  1. VictorSTS

    Proxmox + CEPH - using same NICs but different VLANs for public/cluster networks

    That's what I usually do: using 2 vlans over the same bond add the benefit that if you ever need to separate the cluster network to a different bond, no Ceph configuration changes will have to be made (i.e. add the cluster network and restart services), making that conversion process trivial by...
  2. VictorSTS

    DHCP in Proxmox

    During PVE install, the ISO installer will try to get an IP from DHCP. If that succeeds, it will configure that IP as static for vmbr0. As you are not very experienced, I suggest that you create a DHCP reservation assigned to the MAC of your PVE pointing to the IP you want to use for it and...
  3. VictorSTS

    DHCP in Proxmox

    Wouldn't it be more precise to say that PVE on DHCP isn't supported without other tweaks even on single node setups? Some services require to resolve the host name to an IP that is currently assigned to the host to work properly.
  4. VictorSTS

    Proxmox behind HAProxy SSL backend and frontend results in no encryption at all.

    You are using an http mode frontend with a tcp mode backend for pve, which doesn't make much sense: haproxy will terminate the ssl tunnel and send clear text traffic to PVE which won't work. Change the backend mode to http and use something like this for the backend server: backend pve...
  5. VictorSTS

    ServiceNow discovery

    In any case, the "ServiceNow" manual surely details what kind of access and privileges the user needs. In the end PVE is "just" Debian, so they should have clearly defined instructions on what's needed for ServiceNow to work properly in this scenario.
  6. VictorSTS

    Glusterfs is still maintained. Please don't drop support!

    Know little about Gluster, so can't compare features/performance, but wanted to clarify some points regarding Ceph (again): Among other tasks, Ceph MON will provide a copy of the CRUSH map to every component in the Ceph cluster, including clients. When client connects (i.e. QEMU starts a...
  7. VictorSTS

    Questions about the dynamic CRS

    This is absolutely needed and has to be very precise. I.e. which exact metric is used for both CPU and Memory "loads": CPU load vs CPU usage vs CPU pressure, Mem usage vs Mem pressure. Currently testing CRS in lab and it seems to allow a node to be 100% CPU usage while another is sitting idle...
  8. VictorSTS

    how to set quorum 3 on 6 nodes cluster ?

    Be mindful that if HA is enabled, around 2 minutes after losing quorum HA will reset the no-longer-in-quorum hosts. If you plan on using pvecm expected N, do it gradually as @UdoB explained above instead of setting it to 3 directly when the whole DC is off, as you will have little time to do so...
  9. VictorSTS

    Proper way to set up a Proxmox cluster on a dedicated VLAN (separate from Management)

    For a fully redundant corosync, use at least two logically and physically independent links. Management. That will be populated automatically by PVE on install using the IP address you configure during setup. Yes, but you should add at least a second link to "do it right" As easy as making...
  10. VictorSTS

    "copy.fail" mitigations and pve-container package

    It is, but: There won't be an updated kernel for PVE7 and permanently disabling the module seems the only option (which is fine for me). And that doesn't answer my question about why the official mitigation statement mentions the package pve-container as needed to mitigate the issue so I can...
  11. VictorSTS

    "copy.fail" mitigations and pve-container package

    As I understand it, the "copy.fail" vulnerability is mitigated on PVE by either: Upgrading the kernel on PVE 8 or 9. Disabling module algif_aead and unloading it. The official post about this vulnerability [1] also mentions package pve-container. Why is that package update also needed? Asking...
  12. VictorSTS

    Subscriptions and new hardware

    Can't see were I've been hostile in any way. I've been trying to propose you methods and alternatives that you didn't like and insist on doing things "the VMWware way". That's simply not how PVE works. PVE it's not a 1:1 replacement, but an alternative with it's pro's and con's. Accepting it's...
  13. VictorSTS

    Subscriptions and new hardware

    You can get that very same behavior on PVE, either with or without aditional subscriptions for the new hardware. I've already shown you how to do it without any extra cost. In fact, as Enterprise repo has slightly older packages than no-subscription, you could install the very same versions that...
  14. VictorSTS

    Subscriptions and new hardware

    The way I do it: - Src cluster has subscription. - Update the nodes to latest version. - Install new servers, configure network. - Move subscription to new nodes. - Install latest packages on new nodes. - Setup Ceph, storages, backups, users, etc (if on the same cluster most of this gets...
  15. VictorSTS

    Subscriptions and new hardware

    @niteshadow While technically you could, you are breaking two golden rules: Good practice dictate to have the same package versions on every node. Each server in your cluster needs its own subscription based on its specific socket count. All nodes within a cluster must be subscribed at the same...