• REST - Reversed query?

    REST API
    3
    0 Votes
    3 Posts
    84 Views
    DustyArmstrongD
    @florent OK cool, thank you for the info.
  • Backups Fail with ENOENT: no such file or directory

    Backup
    7
    0 Votes
    7 Posts
    249 Views
    P
    @jvanabra "merge synchronously" option is there for log purpose. When you click on your backup job you can get all logs from this job here: [image: 1777971428328-78941893-5585-486a-b9bc-7d4c59873aa6-image.jpeg]
  • 0 Votes
    4 Posts
    109 Views
    M
    I solved the problem by installing and setting up a new Ubuntu Server. I exported the XO configuration from the old server and imported it onto the new one. What can I say—the backup started working again right away.
  • 0 Votes
    4 Posts
    170 Views
    K
    @julienXOvates Got it. I didn't get a chance to work on this over the weekend, so sometime this week, I'll just bounce the host and see if it comes back. Right now, while I can SSH into it, the admin console appears to be frozen and unresponsive (over iLO).
  • Is v8.3 NUMA aware?

    Hardware
    7
    0 Votes
    7 Posts
    386 Views
    Y
    Hello @codemercenary In theory Xen is NUMA aware (See https://wiki.xenproject.org/wiki/Xen_on_NUMA_Machines) so you would leave memory interleaving option of the BIOS off so that Xen does what it thinks is necessary. But these kinds of settings are very very workload sensitive and in fact it's usually a good idea to just test what works best for you. Regards, Yann
  • CR backup with retention > 4

    Backup
    8
    0 Votes
    8 Posts
    430 Views
    P
    @McHenry I think depends if the copy is a fast clone, depending of full chain length with 13 points behind, or a full copy of its own that will be independant
  • [SOLVED] Just FYI: current update seams to break NUT dependancies

    XCP-ng
    29
    0 Votes
    29 Posts
    2k Views
    F
    Hi, I just wanted to comment that the provided packages work for all my server. Thank you!
  • Default console username and password on XOA Appliance

    Solved Xen Orchestra
    12
    0 Votes
    12 Posts
    29k Views
    olivierlambertO
    Hi, See https://docs.xen-orchestra.com/troubleshooting#recover-web-login-password
  • Mirror backup: Progress status and ETA

    Backup
    8
    1
    1 Votes
    8 Posts
    561 Views
    M
    @poddingue I see backups in the tasks view fine, just not mirror ones. I'm talking about v5, haven't converted to v6 yet because of missing features.
  • XO Console: Modifier keys stuck, unable to enter passwords

    Xen Orchestra
    12
    0 Votes
    12 Posts
    2k Views
    poddingueP
    Just to close the loop on this: XO 6.4 (released on April 29) includes a specific fix for VNC reconnection, which may have been causing keyboard focus loss and, in turn, modifier keys to get stuck (PR #9727). At least, that’s my understanding; I could be completely wrong, so please take it with a grain of salt. If you’re on XO 6 and still seeing the issue, upgrading to 6.4 may help.
  • XOA Unable to connect xo server every 30s

    Xen Orchestra
    4
    0 Votes
    4 Posts
    230 Views
    poddingueP
    Good news, or at least, that's my understanding. This was a known bug and it's fixed in XO 6.4 (released April 29, PR #9681). Upgrading should make those alerts disappear for good. Thanks for the video, it made the report unambiguous.
  • 4 Votes
    64 Posts
    18k Views
    CyrilleC
    Xen Orchestra Kubernetes Storage Driver new release v0.2.0 Introducing dynamic provisioning The latest CSI driver release introduces dynamic provisioning: by creating a Kubernetes storage class that references the XO CSI driver and sets the poolId parameter, you can then create a PVC and pod using that storage class, and Xen Orchestra will automatically provision new VDIs into the default SR of the chosen pool, to satisfy the requested volumes. Your feedback on the CSI driver is welcome! Which features would you like to see? How would you like to use the driver and storage classes? https://github.com/vatesfr/xenorchestra-csi-driver/releases/tag/v0.2.0
  • Date format on web interface: Only US format available?

    Compute
    4
    1 Votes
    4 Posts
    112 Views
    olivierlambertO
    Note that we have 0 XO or XCP-ng dev based in the US neither
  • Install XO from sources.

    Xen Orchestra
    22
    3 Votes
    22 Posts
    2k Views
    F
    Very nice job @acebmxer Well done
  • 0 Votes
    5 Posts
    510 Views
    rzrR
    @bnerickson said: Thanks for the reminder, for some reason it was not seen before (all applogies). I'm unsure where to report this, Here or in related open projects directly (assuming you know where to look at) but let me guide you. but syslog reports the following warning when a VM starts: (UDEV-WORKER) cpu0: Process '/bin/sh -c '[ -e /dev/xen/xenbus ] && [ -e /sys/devices/system/cpu/cpu0/online ] && echo 1 > /sys/devices/system/cpu/cpu0/online'' failed with exit code 1. Good catch, it's a bad habit to use AND (&&) in conditionals. Hardcore programmers prefer to use OR (||) in scripts, this practice prevents failed exit and make debugging easier (with set -xe). (...) > ACTION=="add", SUBSYSTEM=="cpu", RUN+="/bin/sh -c 'if [ -e /dev/xen/xenbus ] && [ -e /sys$devpath/online ]; then echo 1 > /sys$devpath/online; fi'" That would work, What about this "simpler" form ? [ ! -e /dev/xen/xenbus ] || [ ! -e /sys$devpath/online ] || echo 1 > /sys$devpath/online Could be harder to read, but I get used to. If you want you can contribute the fix directly to upstream since the file is public at: https://github.com/xenserver/xe-guest-utilities/blob/master/mk/xen-vcpu-hotplug.rules About the exec bit, here is the line that should be changed: https://github.com/xcp-ng-rpms/xcp-ng-pv-tools/commit/3d134fbd0f3ac9e2f3cfa914e38b33529635d458#r183816712 @bnerickson, If you need any mentoring for OSS contributions, I would be more than a happy to help. Since it's a lowest priority you can take all the time you need, and If too busy, no problem we can do it for you and then backport the change to XCP-ng. 1 stormi committed to xcp-ng-rpms/xcp-ng-pv-tools Build the tools from the sources - Build 32 bit and 64 bit xe-guest-utilities - Build TGZ, RPM and DEB packages for xe-guest-utilities - Put the result into the ISO and the ISO into the xcp-ng-pv-tools RPM (as before). It's a bit hacky, but as the binaries are statically linked, this peculiar build process should work.
  • 0 Votes
    11 Posts
    311 Views
    J
    @MathieuRA I noticed you merged https://github.com/vatesfr/xen-orchestra/pull/9787 I just tried it. And it does seem to fix my original issue! Thank you! I am always impressed by you guys. Making testing and reporting upstream (to you guys) a good experience! Elise-FZI opened this pull request in vatesfr/xen-orchestra closed fix(xo6): remove dev routes from prod #9787
  • Error while scanning disk

    Backup
    14
    0 Votes
    14 Posts
    610 Views
    poddingueP
    Thanks, Florent, for the explanation.
  • 89 vulnerabilities in XAPI / Citrix XenServer

    Solved Development
    7
    0 Votes
    7 Posts
    1k Views
    TeddyAstieT
    Xen Project covered this as XSA-489.
  • VTPM_MAX_AMOUNT_REACHED

    Management
    3
    1
    1 Votes
    3 Posts
    234 Views
    olivierlambertO
    Interesting Maybe a way to create the vTPM in XO? Adding @julienxovates in the loop
  • Alcatel OXE on XCP-ng – anyone done this before?

    XCP-ng
    4
    0 Votes
    4 Posts
    269 Views
    olivierlambertO
    Ah very good, so it was even easier than this. You had the Xen blk driver but instead of using an UUID, the appliance was having a hardcoded sda. Keep us posted