1 Dont go over 95% disk for Xen server Storage Repository.
Running system will stop responding and you will not be able to start/stop servers correctly.
Make sure you MOVE the VMs to other SR if storage space is running short
2 how to find orphaned VDI
xe vdi-list sr-uuid=<sr id> params=uuid
This command will display list of registered Virtual Disks
eg, xe vdi-list sr-uuid=a6811919-143b-e8f8-7767-17bd1af1e968 params=uuid
then perform
ls -alh on the sr mount point
[root@/var/run/sr-mount/a6811919-143b-e8f8-7767-17bd1af1e968]ls -alh
if there are MORE files than vdi-list, that file may be an orphaned file. (dont delete yet)
xe vbd-list vdi-uuid=<disk uuid> params=all and find if the disk has any associations to any VMs.
if the name-label of the VDI is ” name-label ( RW): base copy“
That disk a Original of the linked snapshot disks.
see if you can find vhd-parent
see example below.
uuid ( RO) : c7bcc486-86c1-48d6-9645-8d897df72d19
name-label ( RW): Citrix Profiler 5.2 C Drive
sm-config (MRO): vhd-parent: 82a7fbe1-ffb1-445d-a80d-45e355511e2d
uuid ( RO) : 82a7fbe1-ffb1-445d-a80d-45e355511e2d
name-label ( RW): base copy
================ example of snapshot VHDs ================
-rw-r–r– 1 96 96 6.6G Apr 12 14:26 82a7fbe1-ffb1-445d-a80d-45e355511e2d.vhd - base image
-rw-r–r– 1 96 96 35K Apr 12 14:26 1803ec76-d3b3-4a24-a805-b7422937ea9b.vhd - DIFF DISK
-rw-r–r– 1 96 96 35K Apr 12 14:26 c7bcc486-86c1-48d6-9645-8d897df72d19.vhd - Newly Created snapshot active image
==============================
3 Disable Large Receive Offload on 10G NIC Bonding
http://support.citrix.com/article/CTX127400
Disable the LRO (Large Receive Offload) feature for all 10 Gigabit Ethernet NIC member interfaces of a bond.
Identify the 10 Gigabit NICs:
Open XenCenter and connect to the XenServer. Click on the XenServer and navigate to the NICs tab of the XenServer. Identify the 10 Gigabit NICs either by their speed of “10000 Mbit/s” or their Device name, such as “82599EB 10-Gigabit Network Connection”.
The Linux device name for NIC0 will be eth0, NIC1 will be eth1, and so on.
Edit the /etc/rc.local file of the XenServer and add the following text to the end of the file for each of the above identified 10 Gigabit NICs:
ethtool -K <interface> lro off
Example:
If the bond consists of eth2 and eth3, add the following two lines:
ethtool -K eth2 lro off
ethtool -K eth3 lro off
Repeat step 2 above on all XenServers with 10 Gigabit NICs and reboot the servers after the modification of the /etc/rc.local file.
4 Enable PortFast on XenServer connected ports.
1 PortFast allows a switch port running Spanning Tree Protocol (STP) to go directly from blocking to forwarding mode; skipping learning and listening.
PortFast should only be enabled on ports connected to a single host.
Port cannot be a trunk port and port must be in access mode.
Ports used for storage should have PortFast enabled.
Note: It is important that you enable PortFast with caution, and only on ports that do not connect to multi-homed devices such as hubs or switches.
2. Disable Port Security on XenServer connected ports.
Port security prevents multiple MACs from being presented to the same port. In a virtual environment, you see multiple MACs presented from VMs to the same port causing your port to shutdown if you have Port Security enabled.
3. Disable Spanning Tree Protocol on XenServer connected ports.
Spanning Tree Protocol should be disabled if you are using Bonded or teamed NICs in a virtual environment. Because of the nature of Bonds and Nic teaming, Spanning Tree Protocol should be disabled to avoid failover delay issues when using bonding.
4. Disable BPDU guard on XenServer connected ports.
BPDU is a protection setting part of the STP that prevents you from attaching a network device to a switch port. When you attach a network device the port shuts down and has to be enabled by an administrator.
A PortFast port should never receive configuration BPDUs.
http://support.citrix.com/article/CTX123158
5 Considerations for IP Addressing in XenServer for Storage and Management Networks
http://support.citrix.com/article/CTX118011
6 Xenserver 5.6 Fp1 – may experience FREEZE (no HF yet , APR 2011)
http://forums.citrix.com/thread.jspa?threadID=280290&start=0&tstart=30
Workaround:
1. Login to control domain (dom0) on affected box and execute below command
echo “NR_DOMAIN0_VCPUS=1″ > /etc/sysconfig/unplug-vcpus
2. Reboot server
http://support.citrix.com/article/CTX127395
Hosts Become Unresponsive with XenServer 5.6 on Nehalem and Westmere CPUsEdit
6 XS snapshot notes
http://support.citrix.com/article/CTX122978
XenServer: Understanding Snapshots
Deleting Snapshot will not recover the DISK space if the storage is connected via iSCSI/FC.
NFS will have smaller foot print, but it will still have main disk + delta Disk remain even when there is no more snapshots.
You can export and import VM to reduce the disk to one or save the space.
7 How to create a virtual router/isolated network on Xenserver
http://support.citrix.com/article/CTX116456
8 vcpu tuning
The following section describes the procedure to modify the default setup with some example commands.
The virtual CPU (vCPU) behaviour can be modified by altering the VCPUs-params parameter of a virtual machine like the following:
vCPU pinning is the term for mapping vCPUs of a VM to specific physical resources.
You can tune a vCPU’s pinning with the following command:
[root@xenserver ~]# xe vm-param-set uuid=<VM UUID> VCPUs-params:mask=1,3,7
The VM from the above example will then run on physical CPUs 1, 3, and 7 only.
The VCPU priority weight parameters can also be modified to grant a specific VM more CPU time than others.
[root@xenserver ~]# xe vm-param-set uuid=<VM UUID> VCPUs-params:weight=512
The VM from the above example with a weight of 512 will get twice as much CPU as a domain with a weight of 256 on a busy XenServer Host where all CPU resources are in use.
Valid weights range from 1 to 65535 and the default is 256.
The CPU cap optionally fixes the maximum amount of CPU a VM can use.
[root@xenserver ~]# xe vm-param-set uuid=<VM UUID> VCPUs-params:cap=80
9 renaming volume or description on dell Equallogic results in connection failure.
http://support.citrix.com/article/CTX123284
In summary, do not rename volumes, do not change descriptions. Both values requires to match up with Xenservers’ data for SR to operate correctly.
10 VM not starting up with Error: Starting VM ‘Name-of-VM’ – This operation cannot be performed because the specified VDI could not be found on the storage substrate”.
http://support.citrix.com/article/CTX118383
mapped Disk image including DVD/CD may be missing. (SR is down or DVD image is missing) , unmount the disk, or find disconnected SR and repair it.
11 XS 5.6 can be configured to support different STEPPINGS of CPU for XenMotion/Live Migration.
http://support.citrix.com/article/CTX127059
You can simply join pool using XenCenter, it will perform CPU masking if it is possible to do so, otherwise manual configuration may be required.
12 Cant delete NIC/BOND ? – Cannot connect to server error
Xencetre WILL run matching command on ALL the xenservers.
If any server has problem your command WILL fail. and leave the status in discrepancy.
If any member of the pool is down, do not perform maintenance task on XenCentre. You will cause more damage if you do. REMOVE the dead server if you have to.
13 Pool master is DOWN!
If you lost pool master, only perform pool master recovery! before running any OTHER command, by running any other XE command you may cause more harm. (remember, VMs will not be affected by pool master down)
- Select any running XenServer within the pool that will be promoted. (Each
member server has a copy of the management database and can take control of
the pool without issue.) - From the server’s command line, issue the following command:
xe pool-emergency-transition-to-master - Once the command has completed, recover connections to the other member
servers using the following command:
xe pool-recover-slaves - Verify that pool management has been restored by issuing a test command at
the CLI (xe host-list)
Recent Comments