Subcategories

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

    363 Topics
    3k Posts
    dthenotD
    @Razor_648 While I was writing my previous message, I have been reminded that there are also issues with LVHDoISCSI SR and CBT, you should disable CBT on your backup job and on all VDI on the SR. It might help with the issue.
  • ACLs, Self-service, Cloud-init, Load balancing...

    90 Topics
    766 Posts
    D
    @Danp said in Advanced VM settings Logs: Hi Dustin, Yes... these types of actions are recorded in the Audit log (Settings > Audit) if you have access to this feature and have enabled it. Dan Perfect, thanks!
  • All XO backup features: full and incremental, replication, mirrors...

    371 Topics
    4k Posts
    C
    Those 5 mirror backups continued to fail over the weekend. The good news is that the normal delta backups succeeded over the weekend and didn't have any random failures I've been seeing.
  • Everything related to Xen Orchestra's REST API

    66 Topics
    502 Posts
    lsouai-vatesL
    @StephenAOINS This endpoint is not currently present in our REST API swagger, but we do plan to add it to the list of endpoints. We are currently finalizing the migration of existing endpoints, the next step will be adding new ones. We will keep you informed when it is available. Feel free to come back to us if you want to learn more and follow our blog posts. have a good day
  • Terraform, Packer or any tool to do IaC

    34 Topics
    319 Posts
    olivierlambertO
    No, it's fine, as long the issue contains all the relevant details it's fine
  • How do I remove old pool&host that do not exist?

    5
    4
    0 Votes
    5 Posts
    2k Views
    ForzaF
    Thanks. It works now.
  • Kubernetes Recipe - Basic setup not working

    16
    0 Votes
    16 Posts
    3k Views
    R
    It seems that Debian Buster has some problems with Kubernetes. While this base setup is working, one should also assure that every tool uses the legacy iptables. If not, pod's will not be able to reach the kubernetes api... And then... failure all over! So we also need: update-alternatives --set iptables /usr/sbin/iptables-legacy update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy update-alternatives --set arptables /usr/sbin/arptables-legacy update-alternatives --set ebtables /usr/sbin/ebtables-legacy ```
  • Where does cloud-init log? Deployed template not 100% as configured.

    Solved
    5
    0 Votes
    5 Posts
    361 Views
    S
    Genius! That did the trick. Much appreciated.
  • Audit log export?

    5
    0 Votes
    5 Posts
    758 Views
    badrAZB
    Hi, Audit logs aren't in the same location than the xo-server logs. To get Audit logs you can use this command xo-cli audit.getRecords which returns an array of records. xo-cli audit.getRecords This command has an option ndjson, which allows you to export logs in a ndjson format. xo-cli audit.getRecords ndjson="json:true" @=<outputPath>
  • Question about XO pool network

    5
    0 Votes
    5 Posts
    2k Views
    A
    Hi @olivierlambert , gotcha, no worries. I will just leave it there. Thank you for the reply. Andy
  • Backups stuck at "started" when it looks like they finished

    4
    0 Votes
    4 Posts
    552 Views
    T
    @Rocky most like a connection issue, but since you already restarted I think the logs are already gone. If it was a one-off I wouldn't worry about it (but do make sure that the backup is actually working, may be a good idea to do another full backup).
  • XO debian 10 cloud ready VM template (cloud-init)

    24
    -1 Votes
    24 Posts
    8k Views
    M
    I was able to find the reason XO is not working with cloud-init. XO attaches iso with the cloud-config data as additional disk xvdb and it does not work. But if you provide it as a cd? It will. That is why - as for now you will need to create your own iso and attach it as a cd-rom. You do that this way: Get your files ready (meta-data network-config user-data). My examples below: metadata: instance-id: local-nocloud local-hostname: myhost.example.com network-config: network: version: 1 config: - type: physical name: eth0 subnets: - type: static address: 10.0.0.5/24 gateway: 10.0.0.254 - type: nameserver address: - 8.8.8.8 - 8.8.4.4 search: - example.com - type: physical name: eth1 subnets: - type: static address: 192.168.0.5/24 user-data: #cloud-config ### RUN CMD runcmd: - /usr/bin/apt -y install mc - /usr/bin/date >> /root/testfile # set system default user system_info: default_user: name: testuser gecos: Default Cloud User # password auth - comment out if not using passwords password: testpassword ssh_pwauth: true chpasswd: { expire: false } # do some package management #package_update: true packages: - iptraf - mtr - screen - net-tools - atop Generate iso genisoimage -output myiso.iso -volid cidata -joliet -rock user-data meta-data network-config Upload iso to XO home -> storage -> iso's -> disks -> new disk Prepare VM/template Install Debian 10.6 with xo-tools install cloud-init and cloud-initramfs-growroot remove all network configuration leave just "allow-hotplug ethxxx" (network config will be added in /etc/network/interfaces/50-cloud-init. It will not overwrite yours) shutdown the machine and create the template if you want or just restart VM. DO NOT LET IT BOOT! - keep it in grub. attach your iso let it run It will do whatever you need on the machine.
  • XO templates cd image problem

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    M
    This is a great news as I will be able to have all my scripts written as of now and xo-cli in one place. Thanks @olivierlambert For those who are looking for direct instructions ... on Debian 10.x: # install npm: apt install npm # install xo-cli: npm install -g xo-cli
  • Detached Backups

    Moved
    7
    0 Votes
    7 Posts
    1k Views
    K
    @olivierlambert said in Detached Backups: You can do that already if you like (combined rolling snap and delta backup). But what's the point? Oh, wow. You can combine backup methods in the same job (as long as they are compatible methods (i.e. Delta and CR). This is cool. I currently have separate jobs for my deltas and CRs. I'll need to make time to make the changes, but this will simply things greatly. I'll even throw in a few extra snapshots to retain. So, yea, this is pretty much what I was thinking of. I didn't realize it was there. Why would I need this? Well, when my WSUS installed the Xen drivers on all my Windows VMs, I went a day before realizing what happened. A snapshot would have been sufficient, if I had one from the day before. Instead, I restored the backup which broke the chain. @olivierlambert said in Detached Backups: edit: about your previous question, restoring without breaking the chain. That might be possible. In theory, after restore, we should take a snapshot before booting the backup and then re-link the restored VM to the backup folders. It's doable (renaming some folders correctly) but I'm not sure this will be very useful. I'll look into this when I get some time. Thanks.
  • Help with delta backups and retention

    Solved
    4
    3
    0 Votes
    4 Posts
    590 Views
    DanpD
    @spidernin If you go to Backup > Restore, it will show you the number of existing backups for each VM.
  • XOA updater, add old+new version numbers for each item

    5
    1
    0 Votes
    5 Posts
    456 Views
    rajaa-bR
    OK thanks for your answer. we'll look into that. Best regards.
  • 0 Votes
    1 Posts
    128 Views
    No one has replied
  • Importing vm to XCP-NG 8.2 fails

    5
    0 Votes
    5 Posts
    720 Views
    A
    Yep
  • Missing plugins.. ?

    plugins
    4
    0 Votes
    4 Posts
    2k Views
    olivierlambertO
    We decided to keep cloudinit available for everyone for now. So consider it as a gift
  • Modify xo-web with own Logo

    5
    0 Votes
    5 Posts
    925 Views
    rajaa-bR
    Hi, If you want to change the background color, you need to update the $side-menu-bg: #044b7f; in ~/xen-orchestra/packages/xo-web/src/index.scss . Best regards.
  • backup to s3 - backup and restore

    2
    0 Votes
    2 Posts
    243 Views
    olivierlambertO
    It's exactly the same process for any other backup.
  • Live Migration gone bad, Help!

    10
    0 Votes
    10 Posts
    1k Views
    R
    @stormi so now I have to just figure out how to delete the ghost vm before i reconnect the pool to XO. in xen center I can't delete it for some reason .. guess i'll try cli (never deleted a vm like that before)
  • cr vs delta backup

    2
    0 Votes
    2 Posts
    216 Views
    olivierlambertO
    That's precisely the difference: a delta backup is stored in a remote, a CR is stored in an SR.
  • Backup fails after upgrade 5.50.3

    13
    0 Votes
    13 Posts
    429 Views
    olivierlambertO
    Thanks for the ticket. Please continue to provide feedback in there, it won't be monitored here.
  • Backup File resotre errors

    4
    0 Votes
    4 Posts
    795 Views
    J
    @Rocky said in Backup File resotre errors: ntfs-3g Yes I have both those packages installed