Subcategories

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

    376 Topics
    3k Posts
    olivierlambertO
    Yes! That's a good guide for what you want to achieve
  • ACLs, Self-service, Cloud-init, Load balancing...

    93 Topics
    782 Posts
    T
    @jkatz I ran into the same issue when trying to configure a network adapter with cloudbase-init. The documentation says that the MAC address value is optional but in reality it is required. In my case I want Xen Orchestra to choose a unique MAC during deployment, and I since I am deploying from a template, the NIC name is a known value. The fix that ended up working for me was to modify the networkconfig.py file in cloudbase-init so that the NIC name is required and the MAC address is optional. I ended up making some additional changes to allow for the network-config v2 format along with the existing v1 support and some additional logic to aid in setting the dns search domains (I can't recall if this was originally supported or not but I had issues getting it to work with the original networkconfig.py file) This file needs to replace the existing one that is installed in the C:\Program Files\Cloudbase Solutions\Cloudbase-Init\Python\Lib\site-packages\cloudbaseinit\plugins\common\ directory. To replace it you should make sure that the cloudbase-init service is stopped, then replace the file. Once this file is replaced, delete the pycache folder in the same parent folder as networkconfig.py - this will ensure that python recompiles this file on service start. Start the cloudbase-init service and confirm that you see a new pycache get created. I'm not a python programmer by trade so others may be able to point out areas for improvement but this ended up working for me and I wanted to share in case it could help others needing to deploy new servers without manually specifying a new MAC address. Below is an example network-config v2 format that works with the updated file. version: 2 ethernets: Ethernet 2: dhcp4: false addresses: - 10.20.30.10/24 nameservers: addresses: - 10.20.5.12 - 10.20.5.13 - 10.20.5.14 search: - intranet.domain.org - domain.org - public-domain.org routes: - to: default via: 10.20.30.1 Updated networkconfig.py file: networkconfig.py.txt
  • All XO backup features: full and incremental, replication, mirrors...

    389 Topics
    4k Posts
    olivierlambertO
    That's a feedback for @lsouai-vates
  • Everything related to Xen Orchestra's REST API

    68 Topics
    529 Posts
    olivierlambertO
    @lsouai-vates we should try to reproduce and if we can, to fix it ASAP. Thanks!
  • Terraform, Packer or any tool to do IaC

    35 Topics
    350 Posts
    J
    @manilx I have proposed to the IaC team of Vates, a MCP Server for Vates VMS. Which can be used by GitHub Copilot or similar, if used when doing IaC etc.
  • Delta backup fails on SMB remote

    Unsolved
    25
    1
    0 Votes
    25 Posts
    8k Views
    DarkbeldinD
    @vbits said in Delta backup fails on SMB remote: NexentaStor SC216 Yes that was the question If you have better speed with SMB stay with it NFS should be better in theory but sometime you have to go with real world reality.
  • Keep getting "HTTP connection has timed out" on my Delta Backup

    Solved
    18
    1
    0 Votes
    18 Posts
    4k Views
    V
    @olivierlambert Yes, it seems so. The switches are of different brands between RACs and since a year ago the datacenter was divided in 2 companies and we are not sure how they have organized the networks. Then I had another error but with "rescan all disks" on the host it was solved.
  • Full backup interval with current step

    2
    2
    2 Votes
    2 Posts
    345 Views
    DarkbeldinD
    @Gheppy I will ask @marcungeschikts to take a look at this and talk to dev team about it
  • Metadata backup missing email address field

    2
    0 Votes
    2 Posts
    224 Views
    DarkbeldinD
    @Andrew Hi Andrew, Metadata backup use the report plugin settings to send mail so you can define the email address there.
  • How to move XOA to another PIF?

    3
    0 Votes
    3 Posts
    564 Views
    G
    You should be able to go to the network tab for the VM, click the network it's currently connected to, and then change it to the new one. If you have the management tools installed this can be done live, otherwise you'd need to shut the VM down. [image: 1660085394935-9fd8274e-8c52-4d2c-83b1-ff14c43e0416-image-resized.png] [image: 1660085433254-4278a01c-eee3-49ed-a60c-95a8729312fd-image-resized.png]
  • Create a template with resizable disk?

    2
    1
    1 Votes
    2 Posts
    332 Views
    olivierlambertO
    You can only if you select Cloud init.
  • Is the xoa bash install script on the xcp console broken?

    Solved
    11
    0 Votes
    11 Posts
    2k Views
    olivierlambertO
    Answered on Github.
  • Network & SR Dropdowns Empty When Attempting to Create New VM

    Solved
    5
    0 Votes
    5 Posts
    830 Views
    K
    @olivierlambert OH nice! That will be awesome, I can't wait to try it.
  • XO Hosed on new update

    Solved
    8
    0 Votes
    8 Posts
    987 Views
    A
    @julien-f Much better! I can add servers/remotes/jobs again. Thanks!
  • Error Backup operation timed out

    8
    0 Votes
    8 Posts
    270 Views
    olivierlambertO
    Remove the timeout field and try again please.
  • 0 Votes
    8 Posts
    1k Views
    OhSoNoobO
    @Danp Yes, that was it! Last update I thougt to find a solution to a different problem bij installing nodejs 17. Removing version 17, and manually updating to the correct version did fix the issue. Thank you!
  • Warning during backup. What does it mean?

    9
    2
    0 Votes
    9 Posts
    1k Views
    florentF
    @Danp the first backup after the fix will show the warning ( since it controls the data of the previous backup) the following backups should be ok
  • SyntaxError: Cannot use import statement outside a module

    Solved
    14
    0 Votes
    14 Posts
    4k Views
    ronaldgevernR
    This error can happen in different cases depending on whether you're working with JavaScript on the server-side with Node.js , or client-side in the browser. There are several reasons behind "Cannot use import statement outside a module" error, and the solution depends on how you call the module or script tag. Add type="module" inside the script tag When working with ECMAScript modules and JavaScript module import statements in the browser, you'll need to explicitly tell the browser that a script is module. To do this, you have to add type="module" onto any ‹script› tags that point to a JavaScript module. Once you do this you can import that module without issues. <script type="module" src="./index.js"></script> If you are working on Node.js or react applications and using import statements instead of require to load the modules, then ensure your package.json has a property "type": "module" as shown below. { // ... "type": "module", // ... }
  • Delta Backup Showing Success No Delta Saved

    24
    0 Votes
    24 Posts
    5k Views
    lawrencesystemsL
    @florent Yes, I have the cifs-utils installed.
  • NFS problem

    5
    0 Votes
    5 Posts
    329 Views
    julien-fJ
    @infraestrutura Just display, it does not impact anything else.
  • XO 6: Console updates?

    3
    0 Votes
    3 Posts
    454 Views
    C
    @olivierlambert I am imagining something like esxi / vsphere where I think it's their guest tool does a resize on window size change. I think I've done it with tightvnc where it can autoscale AND it can auto resize as well. Based on looking protocols like nx, spice, and tigervnc support it as well. Understood for the copy paste, is it possible to have another button in current UI next to the copy that is paste (understanding the current UI IS changing). All this button would do is send the keystrokes to the VM either from the text in the console copy field or from the clipboard (I've fine with ctrl+v, the clipboard to the multiline window).
  • Unable to add host to pool

    2
    0 Votes
    2 Posts
    762 Views
    tjkreidlT
    @BradyS Probably this is due to incompatible BIOS settings, such as C states, turbo mode, etc. Run "xe host-cpu-info" on each host to compare the two host settings. Also, make sure the firmware and update levels are all the same as those can also affect the CPU masks.
  • Unable to migrate VM cross pool (duplicate_vm)

    2
    0 Votes
    2 Posts
    272 Views
    DanpD
    You may want to review this thread.
  • Need to install XOSAN pack?

    13
    0 Votes
    13 Posts
    3k Views
    olivierlambertO
    XOSAN is deprecated. Take a look at XOSTOR (there's a thread in this forum with a how to participate to the beta)
  • 0 Votes
    5 Posts
    771 Views
    vilhelmV
    @pdonias Yes, I was running a newer version than that but just to make sure I upgraded to 8068b83ffe58e6caed0cac5816ac2690479a9c41. Still the same problem, unfortunately. I'm not too sure if it matters, but there are VMs running in the pool that does not have an IP in a "smaller" /24 prefix. So if the prefixes 192.168.0.0/16 and 192.168.100.0/24 are in Netbox, there might be VMs using IPs other than the ones in the 192.168.100.0/24 prefix.