Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Xen ====== There is a line of multiple virtualisation products based on the [[https://xenproject.org/|Xen project]] hypervisor: * Citrix XenServer * Vates [[https://xcp-ng.org/|XCP-ng]] * [[https://www.oracle.com/virtualization/#rc30p4|Oracle VM]] Server for x86 ===== metrics and debugging tools ===== * xentop – top for Xen to see all domains' CPU and I/O stats * [[https://xenbits.xen.org/docs/unstable/man/xl.1.html|xl]] – Xen management tool, based on libxenlight * ''xl info'' – see general overview over the hypervisor ===== Sizing ===== ==== RAM allocated to the management domain ==== Dom0 RAM allocation should be calculated by the formula ''dom0_mem = 502+int(physical_mem*0.0205)'' according to Oracle[([[https://docs.oracle.com/cd/E35328_01/E35330/html/vmiug-server-dom0-memory.html|Installing Oracle VM Server on x86 – 2.3 Changing the Dom0 Memory Size]] (Oracle, 2014%%)%%)], meaning for 64GB physical memory you use 1845MB dom0 RAM, for 128GB you use 3188MB and for 512GB physical RAM the dom0 RAM should be 11249MB. ===== Troubleshooting ===== Debugging resources: * [[https://docs.xenserver.com/en-us/citrix-hypervisor/developer/management-api/api-ref-autogen-errors.html|Citrix Hypervisor 8.2 API Reference - Error Handling]] ==== can't add Storage Repository on disk where an SR was before due to SR_DEVICE_IN_USE() ==== Maybe the old disk is still in the device list and not displayed in Xen Orchestra or any other GUI you're running. Check with ''xe pbd-list'' and ''xe sr-list''. Output could look something like this: <code> uuid ( RO) : a862334e-f51c-feb9-6086-7d42c30293bb name-label ( RW): Local HDD (RAID 10) name-description ( RW): Local HDD Storage host ( RO): <not in database> type ( RO): ext content-type ( RO): user </code> In that case (host ''<not in database>''), just forget the SR with ''xe sr-forget uuid=a862334e-f51c-feb9-6086-7d42c30293bb'' and try to add the SR again. ==== VHD coalesce stuck / broken ==== Find out if coalesce is currently running: <code bash> ps axf | grep [c]oalesce 6491 ? R 0:05 \_ /usr/bin/vhd-util coalesce --debug -n /var/run/sr-mount/ed842b8c-49a7-a186-96cd-c18430404bf6/10014af7-27cf-4bb9-b3cd-a081ca470694.vhd </code> If nothing, rescan SR and repeat the ''ps''. === Force coalesce === If lock is active, remove the lock: <code bash> ls /var/lock/sm/<SR_UUID>/gc_active rm /var/lock/sm/<SR_UUID>/gc_active </code> Rescan and wait up to 10 min, while tailing SMlog <code bash> tail --follow -n 500 /var/log/SMlog </code> If coalesce errors Scan all VDI on SR: <code bash> vhd-util scan -f -c -p -m /var/run/sr-mount/$SR_UUID/*.vhd </code> If no error, check error from SMlog on coalesce, like these (coalesce EXCEPTIONS). <code> Jan 28 15:56:11 xen01 SMGC: [23350] *********************** Jan 28 15:56:11 xen01 SMGC: [23350] * E X C E P T I O N * Jan 28 15:56:11 xen01 SMGC: [23350] *********************** Jan 28 15:56:11 xen01 SMGC: [23350] coalesce: EXCEPTION <class 'util.SMException'>, VHD *811e7004(80.000G/2.155G) corrupted Jan 28 15:56:11 xen01 SMGC: [23350] File "/opt/xensource/sm/cleanup.py", line 1542, in coalesce Jan 28 15:56:11 xen01 SMGC: [23350] self._coalesce(vdi) </code> Find the UUID incriminated (here 811e7004…), and test it: <code bash> vhd-util check --debug -n /var/run/sr-mount/<SR_UUID>/<VDI_UUID>.vhd </code> Eg: <code> primary footer invalid: invalid cookie </code> Repair it: <code bash> vhd-util repair -n /var/run/sr-mount/<SR_UUID>/<VDI_UUID>.vhd </code> Recheck it, should be OK now. Remove the lock, and wait a bit, coalesce should start. If that doesn't help, investigate further and possibly ''mv'' (not ''rm''!) the corresponding VDI to see if a rescan can coalesce. ===== Commands ===== ==== Find out UUID from inside the VM ==== <code bash> dmidecode -s system-serial-number # or: xenstore read vm </code> ===== Further reading ===== * [[https://www.amazon.de/Xenserver-Administration-Handbook-Successful-Deployments/dp/149193543X|XenServer Administration Handbook: Practical Recipes for Successful Deployments]] (Mackey and Benedict, 2016) Last modified: 2024-07-05 14:31