Skip to main content

XenServer 5.6 SP2

XenServer 5.6 SP2 just released. New features since 5.6 FP1 are :


§   IntelliCache. Using XenServer with IntelliCache makes hosted Virtual Desktop Infrastructure deployments more cost-effective by enabling you to use a combination of shared storage and local storage. The load on the storage array is reduced and performance is enhanced. See the XenServer Service Pack 2 Installation Guide for more information on this feature.
§   WorkLoad Balancing Installation Improvements. Choice of English or Japanese language available on installation screens.
§   Local Storage Spans All Physical Volumnes. When EXT local storage is used (e.g. when the Use thin provisioning is selected in the host installer), on a host containing multiple physical disks, the local Storage Repository (SR) now spans all the disks in a single LVM volume group.
§   Reset-on-boot VM behaviour. Disks with the on-boot option set to reset, is now available for disks in any type of SR. (Previously it was only available for disks in NFS and EXT SRs.)
§   Block SCSI Generic Support. BSG support added enabling full compatibility with Emulex and QLogic management functionatility.
§   Enhanced guest OS support. Support for Red Hat Enterprise Linux (RHEL) 6.

For new features since 5.6, jump to Citrix where you can also find steps for fresh install or upgrade from 5.6 or 5.6 FP1. For other docs regarding 5.6 SP2, jump to Product Documentation for XenServer 5.6 SP 2.

Comments

Popular posts from this blog

Why I Can't Move/Import VM in XenServer.

Ok this is what i found out, the metadata export/import via ' Backup, Restore and Update ' menu in xsconsole OR using ' xe vm-export filename=xxx metadata=true vm= ' will export all vm's metadata eventhough you've specify the vm in the latter, the former is ok because it is backup & restore tool. Problem happens when you want to restore the metadata or import to another xenserver. If you follow the method from 'Backup and Restore' in the reference guide, it should be ok if you're using pool because all pools are using shared storage; and if you don't use pool, your xenserver store all the VMs in the shared storage ONLY, means the Local SR is not use at all. This way, you wont face any problem. But, what if you have a mix of local & shared storage use. 

SQL using partition and connect by clause.

select id, max(ltrim(sys_connect_by_path(gred,' , '),' , ')) as mygred from (select b.KJ19SIJIL||b.KJ19KOD as id, b.KJ19GRED as gred, row_number() over(partition by b.KJ19SIJIL||b.KJ19KOD order by b.KJ19GRED) as myrow from kj19setara b) start with myrow = 1 connect by prior myrow = myrow -1 and prior id = id group by id order by 1;

Use raw disk for Apache Trafficserver in Centos 7

I want to use raw disk for my Trafficserver 5.1.0. I've created a partition at /dev/sda5 and in order to allow trafficserver to use the disk, please follow these steps. 1) Edit/create a file in /etc/udev/rules.d . I named it 50-ats.rules eg. vi /etc/udev/rules.d/50-ats.rules 2) Add these text. SUBSYSTEM=="block", KERNEL=="sda5", GROUP:="trafficserver", OWNER:="nobody" note : - sda5 is the disk/partition I want to use with trafficserver. - OWNER:="nobody" is the default owner when you compile trafficserver.