XCP-ng
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. Pilow
    3. Posts
    P
    Offline
    • Profile
    • Following 3
    • Followers 0
    • Topics 12
    • Posts 116
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: delta backups with offline snapshot: VMs do not start after snapshot, they start after transfer is done.

      @Bastien-Nollet where is this "offline backups" check option ?

      I'm aware of snapshot mode/offline, but not offline backups ?

      EDIT : my bad, I found it, it's only available for FULL BACKUPS, not DELTA BACKUPS
      c6b870b0-18d3-4c5d-a2df-06384e22dc06-{5CB5749D-2069-4E91-BAD6-3AAF5EAFBDA7}.png

      posted in Backup
      P
      Pilow
    • REQUEST / TAG on networks ?

      Hi,

      when pulling info by websocket XOA jsonrpc, we can have this :
      1cccb862-4090-40ba-8c02-4a4e1e393fb6-image.png

      So, there is a TAG attribute on networks 😃

      But nowhere to be seen in the web UI
      b6acb7b0-e151-4f57-b641-a4481eba82d3-{091B6513-1389-4350-9343-D7CB41EFF717}.png

      Could we have possibility to tag networks too ? (in the XOA web UI)

      Thanks

      posted in Management
      P
      Pilow
    • RE: Unable to mount NFS Remote for backups while storage and ISO NFS SR's work perfectly

      I even had a case where my XOA had multiple NICs (and multiple IPs)
      The IP that it used to access NFS was not the one I expected... the debug mode of the mount nfs CLI did put that into light.

      is it the case for you ?

      posted in Backup
      P
      Pilow
    • RE: Unable to mount NFS Remote for backups while storage and ISO NFS SR's work perfectly

      @Bub try to manually mount the NFS share in cli on the xoa
      and activate debug (-vvv if I remember)

      sometimes there is more obvious reasons , and the step where it is failing that can be seen this way

      try the exact cli mount that you see failing in the error log

      posted in Backup
      P
      Pilow
    • RE: Unable to mount NFS Remote for backups while storage and ISO NFS SR's work perfectly

      @Bub indeed, permissions issues.

      What IP do you authorize for your NFS export ?

      remember, SR and ISOsr are accessed by the XCP host IP...

      but, NFS Remote is accessed by XO/XOA IP address !

      posted in Backup
      P
      Pilow
    • RE: Rolling Pool Update Not Working

      @coolsport00 are the HOSTs stricly identical ? VM can manually be migrated ?

      is there a VM affinity in ADVANCED TAB ? is the PREVENT VM MIGRATION ENABLED ?
      if possible try to shutdown the VM.

      posted in Management
      P
      Pilow
    • RE: License not working

      @Pief Hi, missing some info here.
      does the email attached to the licence is currently registered in the XOA/UPDATES page ?

      posted in Xen Orchestra
      P
      Pilow
    • RE: Rolling Pool Update Not Working

      and then go to the DISK tab of this VM and take a screenshot (before removing the unnecessary DISK in the CDROM that is on a local SR of the host where this VM currently lives 😃 )

      posted in Management
      P
      Pilow
    • RE: Rolling Pool Update Not Working

      @coolsport00 said in Rolling Pool Update Not Working:

      492194ea-9ad0-b759-ab20-8f72ffbb0cbb

      go in the VM view list, and enter this UUID in the search bar on top.
      any luck on filtering the VM ?

      posted in Management
      P
      Pilow
    • RE: Rolling Pool Update Not Working

      @coolsport00 could you click on 8614f054-2d43-4655-99e8-ae8e8c85ca31-{7E3B69AF-2F63-4C98-99BC-79479AFB680A}.png and post the error log here ?

      posted in Management
      P
      Pilow
    • RE: Single or Dual CPU Hosts - Any reasons to choose one over the other?

      @Bill.Oliver license-wise should be the same.

      now I think virtualisation gurus here could try to explain you what are the challenges with numa and dual sockets

      i have notions, but couldnt explain quite the optimisation in xen

      posted in Compute
      P
      Pilow
    • RE: Custom config / cloud-init

      @bvitnik indeed, RTFM

      i'm a newb on cloud-init, and should follow more this good advice !

      posted in Management
      P
      Pilow
    • RE: Single or Dual CPU Hosts - Any reasons to choose one over the other?

      @Bill.Oliver obvioulsy, licensing.

      If you are planning to put Microsoft VMs, beware of licensing with multisockets by hosts, you have to cover them all.

      By default, you should cover 16 cores with 1 Microsoft Windows Server Standard to get 2 VMs licensed.
      If you get two sockets, you have to double the licensing (and add 2 packs core to attain your cores coverage...)

      All licensing based on cores make you think twice when planning CPUs...

      If you want to, you can go DATACENTER edition, but you still have to cover all the cores...

      posted in Compute
      P
      Pilow
    • RE: Custom config / cloud-init

      @bvitnik said in Custom config / cloud-init:

      https://docs.xcp-ng.org/guides/create-use-custom-xcpng-ubuntu-templates/

      I noticed in the documentation, they put "password:" for user password creation.

      what is working for me :

      plain_text_passwd: 'myverysecureplaintextpassword'
      

      more secure, use a SHA 512 encrypted password, but with :

      passwd: QChUQYy14yOv_encrypted_password_mgnEFL6TRPIsJ/4
      

      make it encrypted with

      # mkpasswd --method=SHA-512
      
      posted in Management
      P
      Pilow
    • RE: Custom config / cloud-init

      @acebmxer on my Windows VMs with cloudbase init I use these :

      version: 1
      config:
        - type: physical
          name: Ethernet2
          subnets:
            - type: dhcp4
      

      or

      version: 1
      config:
        - type: physical
          name: Ethernet2
          subnets:
            - type: static
              address: 10.x.x.x
              netmask: 255.255.255.0
              gateway: 10.x.x.x
              dns_nameservers:
                - 10.x.x.x
                - 8.8.8.8
      

      beware of TYPE, i put dhcp4, not dhcp
      and the NAME of your nic needs to be exactly the one of the template !
      IPs are obsfucated with x.x.x in the static version

      posted in Management
      P
      Pilow
    • RE: Custom config / cloud-init

      @acebmxer said in Custom config / cloud-init:

      #cloud-config
      hostname: {name}
      users:

      • name: newusername
        gecos: New User
        sudo: ALL=(ALL) NOPASSWD:ALL
        groups: users, admin
        shell: /bin/bash
        ssh_authorized_keys:
        • ssh-ed25519 AAAAC3....18ZbA

      thank you for that, I stole your user creation and SSH Key attribution with cloudinit config, it's working perfect 😃

      posted in Management
      P
      Pilow
    • RE: Every VM in a CR backup job creates an "Unhealthy VDI"

      @joeymorin try to check the merge backup synchronously to avoid other jobs messing with this one ?

      posted in Backup
      P
      Pilow
    • RE: Racked today, entire hosting solution based on Vates stack

      @nikade to be noted, on XO6 this bug does not exist anymore !

      posted in Share your setup!
      P
      Pilow
    • RE: Racked today, entire hosting solution based on Vates stack

      @bvitnik stack-wise we had the equivalent on vmware (esxi hosts, pfsenses, way of managing vlans to isolate tenants) but was all manually managed.

      XOA apis/websockets possibilities and our willing to do less "by hand" put us to dev this GUI, all from scratch.
      we are a small team, the more it runs by itself, the more time we have to "get it done" on other topics (sell it, market it, ...)

      posted in Share your setup!
      P
      Pilow