Subcategories

  • VMs, hosts, pools, networks and all other usual management tasks.

    370 Topics
    3k Posts
    olivierlambertO
    That's why XO proxies are great and the go-to solution Alternatively, you can deploy an XO inside the target network and manage your hosts from there (but you won't have the unique central console with one XO+proxies for the entire infrastructure)
  • ACLs, Self-service, Cloud-init, Load balancing...

    91 Topics
    769 Posts
    olivierlambertO
    Question for @pdonias
  • All XO backup features: full and incremental, replication, mirrors...

    380 Topics
    4k Posts
    florentF
    @cairoti you should be able to add it as a remote ( not as a storage repository on xcp-ng)
  • Everything related to Xen Orchestra's REST API

    67 Topics
    515 Posts
    B
    @lsouai-vates said in Trouble Creating VM via API: @bryonadams I understand your point of view and the reasoning behind it. However, it’s not always an absolute rule that every field returned by a GET endpoint can be passed back to a POST (or PUT). Sorry, I don't think I was clear. The keys are different for the same thing. Depending on where you look, autoPowerOn or auto_poweron is returned. eg: ..rest/v0/pools/_/actions/create_vm/ returns the key "auto_poweron", /rest/v0/vms/de320b24-d768-50f4-6226-b48f64f85a55 (my example vm) returns the key "auto_poweron" Swagger doesn't seem to have this key as far as I can tell, unless I'm looking at the wrong thing. I only see a way to filter by tags. @lsouai-vates said in Trouble Creating VM via API: Indeed, it also seems you’re not running the latest version of XO. Could you please check again? You should be getting the recent REST API updates: I don't know how I can be more up to date than up to date. [image: 1755021997157-49b5e84e-8e5e-4df6-9083-c90d3fe7a541-image.png]
  • Terraform, Packer or any tool to do IaC

    35 Topics
    336 Posts
    CyrilleC
    Hi, thank you for the example! We will take a look. It could be a good idea to have a dedicated documentation/web page with usage examples of 'DevOps' tools
  • Automatic Xen-Orchestra CE installation

    2
    1 Votes
    2 Posts
    4k Views
    A
    @Momi_V Thanks for providing details. New documented setups are helpful to others. I'm using this installer script on a Debian 11. (Thanks to @ronivay!). Not exactly a quick hands off deployment but it works well for me.
  • Troubleshooting backups never finishing

    2
    1
    1 Votes
    2 Posts
    264 Views
    AtaxyaNetworkA
    @elementalwindx Hi ! From what I see in the screenshot, your backup is currently running. Do you have some error in Setting -> Logs ?
  • cpu cores reported mismatched

    8
    0 Votes
    8 Posts
    1k Views
    olivierlambertO
    Indeed, that's not "usual" if you comes from a purely Linux/KVM world, where the host is the entire machine.
  • How to Install XCP-ng Guest Tools to VM?

    14
    0 Votes
    14 Posts
    18k Views
    JamfoFLJ
    @MichaelCropper That's awesome! I'm glad the usual computer pixie dust fairies dropped by and fixed the issue for you. Poor Windows though... you initially laid the blame at their feet, but it seems more like this was a Google Chrome issue. I've noted a LOT of peculiarities with Google Chrome as of late and have started to migrate away for that reason. Reading a lot of forums on Reddit and other IT sources, this seems to be something that is pretty wide-spread. In any case, it's working for you now... until Google changes something again. LOL I hope you have a great weekend!
  • 0 Votes
    2 Posts
    613 Views
    olivierlambertO
    Hi, I think it's used for file level restore on S3 enabled backup. It's not crucial as long as you don't need to restore individual files on S3, obviously. @julien-f is there a way to avoid this dep manually in order to build the rest of XO?
  • Question regarding copying of VMs within storage pool

    Solved
    9
    0 Votes
    9 Posts
    1k Views
    K
    @olivierlambert Well damn -- you're right. Well VM now up and running. Just have to figure out how networking works in this new copied VM. Thanks for help.
  • "Remove" TOTP on a user account

    in backlog
    5
    0 Votes
    5 Posts
    651 Views
    AtaxyaNetworkA
    @julien-f Hello ! Ok, not problem, I hope it will arrive soon in the UI Thank you for the command, I don't think I saw this command in the docs, maybe I can add it ^^ I will look, and I will make a PR if I found in which section I can add the command
  • XO logs to external syslog

    15
    0 Votes
    15 Posts
    3k Views
    olivierlambertO
    It is released! Kudos to the XO team (and @Danp for spotting another quirk)
  • Health Check

    Unsolved
    21
    2
    0 Votes
    21 Posts
    4k Views
    olivierlambertO
    I was about to post here but you were even faster
  • Private Connection Grey Out On XOA

    10
    1
    0 Votes
    10 Posts
    1k Views
    slamj1S
    Hi @BenjiReis, the certificate procedure I posted yesterday isn't quite right and although the plugin will enable, TLS will not negotiate. My openssl.conf defaults to adding x509v3 attributes that breaks the TLS negotiation process. Here's the correct procedure on Rocky Linux 9. Should work for most other recent Linux flavors. Create a temporary directory to work in, and copy your OS's openssl.cnf file into it. Edit the [ v3_ca ] section so it only has the following 2 entries: subjectKeyIdentifier=hash authorityKeyIdentifier=keyid:always,issuer Now create the CA (run all commands in your tmp directory). I am also now using 4096 bit strength: openssl genrsa 4096 > ca-key.pem openssl req -new -x509 -config ./openssl.cnf -nodes -days 365000 -key ca-key.pem -out ca-cert.pem ** The server certificate step in the previous post is not necessary so just skip it. Now create a file called client_attr.cnf and put the following entries in it: subjectKeyIdentifier=hash authorityKeyIdentifier=keyid,issuer Now Create the client certificate: openssl req -newkey rsa:4096 -nodes -keyout client-key.pem -out client-req.pem openssl x509 -req -days 365000 -set_serial 01 -in client-req.pem -out client-cert.pem -CA ca-cert.pem -CAkey ca-key.pem -extfile ./client_attr.cnf The ca-cert.pem and client_cert.pem should now conform to the correct x509 format that will work with XOA and hence cross-server private networking. Sorry for the incorrect procedure, it was a late night Cheers.
  • XO from source - Pool support not available for source users?

    5
    1
    1 Votes
    5 Posts
    1k Views
    olivierlambertO
    Should be merged soon: https://github.com/vatesfr/xen-orchestra/pull/6517/files Thanks @MathieuRA MathieuRA opened this pull request in vatesfr/xen-orchestra closed fix(xo-web): "Pro Support" instead of "pool support" in XCP-ng support tooltips #6517
  • 0 Votes
    5 Posts
    1k Views
    olivierlambertO
    Please print the output of xl info and xl dmesg
  • Backup through XO fails (VHD check error etc.)

    16
    0 Votes
    16 Posts
    1k Views
    T
    @florent I reverted back to: xo-server 5.100.0 xo-web 5.101.0 commit 26e7e and I'm facing the same issues. If you can tell me, which logs you need, I can surely provide them. Thanks!
  • Backup fails - how to investigate

    7
    0 Votes
    7 Posts
    387 Views
    P
    @olivierlambert Without any change in the configuration, the backup now reports to be successful. Next step is to check whether the backups will restore correctly. The mystery still stands - what was wrong previously.
  • connect using external ssh tool

    2
    1
    0 Votes
    2 Posts
    504 Views
    olivierlambertO
    You need to tell your browser how to react on ssh:// and rdp:// link
  • ACL configuration for independent pool

    5
    0 Votes
    5 Posts
    665 Views
    pdoniasP
    @AtaxyaNetwork No worries! Glad it's working now
  • VM Creation Date

    2
    1
    0 Votes
    2 Posts
    347 Views
    olivierlambertO
    This is the date get from XAPI. If it was migrated from another host, you have the first time it was visible for this XAPI.
  • Pools Showing Red Warning Symbol

    7
    0 Votes
    7 Posts
    2k Views
    wyatt-madeW
    Thank you! @olivierlambert @Danp
  • WHMCS integration

    15
    0 Votes
    15 Posts
    3k Views
    olivierlambertO
    We'll be happy to assist on what you need API wise to make it real
  • 0 Votes
    5 Posts
    636 Views
    olivierlambertO
    haha so it was that Lucky guess or experience, call that the way you want