• 0 Votes
    4 Posts
    145 Views
    K
    Ok I think I have resolved the issue. It appears that if you do not activate either a paid license or the trial, it fails with the import because many of the features are not active until you enable the license and then update the XOA appliance. Once I activated the trial and then updated the appliance again, I was able to successfully import the backup. My hesitation with activating the license before importing the config as the licenses are bound and I didn't want to have to redo the setup if the config did not import. Again, it looks like I need to activate the license first and then I can import the config.
  • 0 Votes
    3 Posts
    132 Views
    G
    @hoerup Dang, how did I miss that. Thanks and my apologies! Graham
  • 0 Votes
    6 Posts
    395 Views
    J
    @gcpeters4 said: @john.c This is a good idea as well. If the previous suggestion of trying to do a DNS round robin approach doesn't work, this may be my best option. Thanks for taking the time to provide your suggestion! By the way my suggestion is recommended best practice from Microsoft for their Active Directory software and/or technology. My suggestion will be more likely to work if your DNS servers and requests have issues with Round Robin configuration. Plus with my solution you can easily add more servers as domain controllers to the cluster, as required and use replication to keep them consistent and up to date.
  • REST - Reversed query?

    REST API
    3
    0 Votes
    3 Posts
    129 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
    314 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
    161 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
    201 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
    437 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
    480 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
    30k 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
    617 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
    262 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.
  • 0 Votes
    5 Posts
    552 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
    417 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
    694 Views
    poddingueP
    Thanks, Florent, for the explanation.
  • 89 vulnerabilities in XAPI / Citrix XenServer

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

    Management
    3
    1
    1 Votes
    3 Posts
    248 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
    298 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