<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sebastian Mogilowskis Blog &#187; Virtualization</title>
	<atom:link href="http://www.mogilowski.net/lang/en-us/category/sysadmin/virtualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mogilowski.net</link>
	<description>Just another blog about administration, linux and other stuff</description>
	<lastBuildDate>Tue, 17 Jan 2012 13:42:30 +0000</lastBuildDate>
	<language>en-us</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Install VMware Tools on Debian Squeeze</title>
		<link>http://www.mogilowski.net/lang/en-us/2011/05/18/install-vmware-tools-on-debian-squeeze</link>
		<comments>http://www.mogilowski.net/lang/en-us/2011/05/18/install-vmware-tools-on-debian-squeeze#comments</comments>
		<pubDate>Wed, 18 May 2011 07:43:42 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Systemadministration]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[Squeeze]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=1011</guid>
		<description><![CDATA[1. Install required packages aptitude install autoconf automake binutils cpp gcc linux-headers-$(uname -r) make psmisc 2. Mount VMware Tools mkdir /tmp/vmtools mount /dev/cdrom /tmp/vmtools 3. Unzip the tools tar -C /tmp -vfx /tmp/vmtools/VMwareTools*.tar.gz 4. Run install script cd /tmp/vmware-tools-distrib ./vmware-install.pl Note: You can also use the &#8220;open-vm-tools&#8221; instead of installing the VMware Tools. aptitude install [...]]]></description>
			<content:encoded><![CDATA[<h4><span lang="en-us">1. Install required packages</span></h4>
<pre>
aptitude install autoconf automake binutils cpp gcc linux-headers-$(uname -r) make psmisc
</pre>
<h4><span lang="en-us">2. Mount VMware Tools</span></h4>
<pre>
mkdir /tmp/vmtools
mount /dev/cdrom /tmp/vmtools
</pre>
<h4><span lang="en-us">3. Unzip the tools</span></h4>
<pre>
tar -C /tmp -vfx /tmp/vmtools/VMwareTools*.tar.gz
</pre>
<h4><span lang="en-us">4. Run install script</span></h4>
<pre>
cd /tmp/vmware-tools-distrib
./vmware-install.pl
</pre>
<p><span lang="en-us"><strong>Note: </strong> You can also use the <i>&#8220;open-vm-tools&#8221;</i> instead of installing the VMware Tools.</span></p>
<pre>
aptitude install open-vm-tools
</pre>
<p><span lang="en-us">You need to add <i>&#8220;contrib&#8221;</i> to your sources.list !</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2011/05/18/install-vmware-tools-on-debian-squeeze/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable SNMP on Citrix XenServer 5.6</title>
		<link>http://www.mogilowski.net/lang/en-us/2011/02/22/enable-snmp-on-citrix-xenserver-5-6</link>
		<comments>http://www.mogilowski.net/lang/en-us/2011/02/22/enable-snmp-on-citrix-xenserver-5-6#comments</comments>
		<pubDate>Tue, 22 Feb 2011 19:16:12 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Systemadministration]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[snmp]]></category>
		<category><![CDATA[XENServer]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=913</guid>
		<description><![CDATA[Open XenServer Console or open a SSH connection to your XenServer for this howto: 1. Firewall Settings Open &#8220;/etc/sysconfig/iptables&#8221; with &#8220;vi&#8221; editor and add the following line to allow SNMP connections: -A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 161 -j ACCEPT Restart iptables service: service iptables restart 2. Configurate SNMPD Edit [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="en-us">Open XenServer Console or open a SSH connection to your XenServer for this howto:</span></p>
<h4><span lang="en-us">1. Firewall Settings</span></h4>
<p><span lang="en-us">Open <i>&#8220;/etc/sysconfig/iptables&#8221;</i> with <i>&#8220;vi&#8221;</i> editor and add the following line to allow SNMP connections:</span></p>
<pre>
-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 161 -j ACCEPT
</pre>
<p><span lang="en-us">Restart iptables service:</span></p>
<pre>
service iptables restart
</pre>
<h4><span lang="en-us">2. Configurate SNMPD</span></h4>
<p><span lang="en-us">Edit <i>&#8220;/etc/snmp/snmpd.conf&#8221;</i> and insert the following lines:</span></p>
<pre>
[...]
com2sec MY-TRUST-NET 192.168.0.0/24      public
[...]

[...]
group   notConfigGroup v1            MY-TRUST-NET
[...]
</pre>
<p><span lang="en-us"><strong>Note: </strong> <i>Replace &#8220;192.168.0.0/24&#8243; with your Subnet.</i></span></p>
<p><span lang="en-us">Now start the SNMP-Deamon with:</span></p>
<pre>
service snmpd start
</pre>
<p><span lang="en-us">To start SNMP automatic on system startup execute the following command:</span></p>
<pre>
chkconfig snmpd on
</pre>
<p><span lang="en-us"><strong>Note: </strong><i>This settings are not persistant. If you upgrade your XenServer you have to make this settings again.</i></span></p>
<h4>3. Links</h4>
<p>* <a href="http://support.citrix.com/article/CTX122337" target="_blank">http://support.citrix.com/article/CTX122337</a><br />
* <a href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&#038;cc=us&#038;prodTypeId=15351&#038;prodSeriesId=1121516&#038;swItem=MTX-9f349b2b4fc94915ac6cde8b8a&#038;prodNameId=3288134&#038;swEnvOID=4039&#038;swLang=8&#038;taskId=135&#038;mode=5" target="_blank">HP SNMP Agents for Citrix XenServer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2011/02/22/enable-snmp-on-citrix-xenserver-5-6/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu Lucid on XenServer 5.6 FP1</title>
		<link>http://www.mogilowski.net/lang/en-us/2011/02/16/ubuntu-lucid-on-xenserver-5-6-fp1</link>
		<comments>http://www.mogilowski.net/lang/en-us/2011/02/16/ubuntu-lucid-on-xenserver-5-6-fp1#comments</comments>
		<pubDate>Wed, 16 Feb 2011 20:00:28 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Systemadministration]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[Lucid]]></category>
		<category><![CDATA[Lynx]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[XENServer]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=855</guid>
		<description><![CDATA[Describes howto install Ubuntu Lucid 10.04 LTS (32-Bit or 64-Bit) on a Citrix XenServer 5.6 FP1 and convert the virtual machine into a template. Note: Click to enlarge a picture. 1. Create a new virtual machine Select template &#8220;Ubuntu Lucid Lynx 10.04 (64-bit)&#8221; and choose name and description for your virtual machine (or 32-Bit if [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="en-us">Describes howto install Ubuntu Lucid 10.04 LTS (32-Bit or 64-Bit) on a Citrix XenServer 5.6 FP1 and convert the virtual machine into a template.</span></p>
<p><span lang="en-us"><strong>Note: </strong><i>Click to enlarge a picture.</i></span></p>
<h4><span lang="en-us">1. Create a new virtual machine</span></h4>
<p><span lang="en-us">Select template <i>&#8220;Ubuntu Lucid Lynx 10.04 (64-bit)&#8221;</i> and choose name and description for your virtual machine (or 32-Bit if necessary). Select <i>&#8220;Install from URL&#8221;</i> and insert the URL <strong>http://archive.ubuntu.net/ubuntu</strong></span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl1.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl1.jpg" alt="xl1" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl2.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl2.jpg" alt="xl2" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl3.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl3.jpg" alt="xl3" /></a></p>
<p><span lang="en-us">Specify the number of vCPUs and the memory for your virtual machine and create the virtual disks.</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl4.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl4.jpg" alt="xl4" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl5.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl5.jpg" alt="xl5" /></a></p>
<p><span lang="en-us">I choose a 8 GB Disk for the system and 1 GB for the swap disk.</span><br />
<span lang="en-us">By using 2 different disks i can delete the swap partition if i don&#8217;t need it or can replace disks with bigger ones.</span></p>
<p><span lang="en-us">At least add network interfaces to your VM. This depends on your XenServer network setup. Choose a bonding or single interface here for example and finish the virtual machine wizzard.</span></p>
<p><span lang="en-us">XenServer now builds your virtual machine and start it.</span></p>
<p><span lang="en-us">If the virtual machine is ready open the console to the virtual machine and start the installation of Ubuntu:</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl6.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl6.jpg" alt="xl6" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl7.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl7.jpg" alt="xl7" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl8.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl8.jpg" alt="xl8" /></a></p>
<p><span lang="en-us">Choose your country and keyboard layout and configurate the network interface.</span><br />
<span lang="en-us">If you don&#8217;t have a DHCP Server in your network you choose <i>&#8220;manual&#8221;</i> and configurate the network by hand.</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl9.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl9.jpg" alt="xl9" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl10.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl10.jpg" alt="xl10" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl11.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl11.jpg" alt="xl11" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl12.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl12.jpg" alt="xl12" /></a></p>
<p><span lang="en-us">Enter the hostname and domain name. In this example, my system is called <i>xen.local</i>, so I enter <strong>xen</strong> and <strong>local</strong>:</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl13.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl13.jpg" alt="xl13" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl14.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl14.jpg" alt="xl14" /></a></p>
<p><span lang="en-us">Choose a mirror of the Ubuntu archive.</span><br />
<span lang="en-us">Please check if the installer detected your time zone correctly. If so, select <strong>Yes</strong>, otherwise <strong>No</strong>:</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl15.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl15.jpg" alt="xl15" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl16.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl16.jpg" alt="xl16" /></a></p>
<p><span lang="en-us"><strong>Partitioning</strong></span></p>
<p><span lang="en-us">Now you have to partition your hard disks.</span><br />
<span lang="en-us">First select <i>&#8220;manual&#8221;</i> and select the first virtual disk <em>&#8220;xvda&#8221;</em>. Create a new empty partition table and select the free disk space to create a new partition.</span><br />
<span lang="en-us">Use this partition as <i>&#8220;Ext4 journaling file system&#8221;</i> and as <i>&#8220;/&#8221;</i> mount point.</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl17.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl17.jpg" alt="xl17" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl18.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl18.jpg" alt="xl18" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl19.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl19.jpg" alt="xl19" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl20.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl20.jpg" alt="xl20" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl21.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl21.jpg" alt="xl21" /></a></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl22.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl22.jpg" alt="xl22" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl23.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl23.jpg" alt="xl23" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl24.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl24.jpg" alt="xl24" width="100" height="75" /></a></p>
<p><br/><br/><br/><br/><br/><br/><span lang="en-us">Now repeat all with <em>&#8220;xvdb&#8221;</em> but now create a <i>&#8220;swap area&#8221;</i>.</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl26.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl26.jpg" alt="xl26" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl27.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl27.jpg" alt="xl27" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl28.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl28.jpg" alt="xl28" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl29.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl29.jpg" alt="xl29" /></a></p>
<p><span lang="en-us">The partitioning is totally up to you &#8211; if you know what you&#8217;re doing, you can also set up different partitions.</span><br />
<span lang="en-us">At least <i>&#8220;Finish partitioning&#8221;</i> and select <i>&#8220;Yes&#8221;</i> when you are asked <i>&#8220;Write the changes to disks&#8221;</i>. Now the new partitions are being created and formatted.</span></p>
<p><span lang="en-us">Afterwards the base system is being installed:</span><br />
<a class="shutterset_" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl30.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl30.jpg" alt="xl30" /></a></p>
<p><span lang="en-us">Create a user, for example the user <i>&#8220;sebastian&#8221;</i> with the user name <i>&#8220;sebastian&#8221;</i>:</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl31.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl31.jpg" alt="xl31" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl32.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl32.jpg" alt="xl32" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl33.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl33.jpg" alt="xl33" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl34.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl34.jpg" alt="xl34" /></a></p>
<p><span lang="en-us"><strong>Note: </strong><i>I don&#8217;t need an encrypted private directory, so I choose <strong>No</strong> here.</i></span></p>
<p><span lang="en-us">Next the package manager apt gets configured. Leave the HTTP proxy line empty unless you&#8217;re using a proxy server to connect to the Internet.</span><br />
<span lang="en-us">I select <i>&#8220;No automatic updates&#8221;</i>. Of course, it&#8217;s up to you what you select here. But on a server i usually want to install the updates by myself.</span><br />
<span lang="en-us">Make your choce about automatic updates. Now the installer installs the system and download some essential packets. Make a small software selecten. I choose <i>&#8220;Basic Ubuntu server&#8221;</i> and <i>&#8220;OpenSSH server&#8221;</i> to get a small virtual machine.</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl35.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl35.jpg" alt="xl35" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl36.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl36.jpg" alt="xl36" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl37.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl37.jpg" alt="xl37" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl38.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl38.jpg" alt="xl38" /></a></p>
<p><span lang="en-us">Now the GRUB boot loader gets installed. Select <i>&#8220;Yes&#8221;</i> when you are asked <i>&#8220;Install the GRUB boot loader to the master boot record?&#8221;</i>.</span></p>
<p><a class="shutterset_" style="float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl39.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl39.jpg" alt="xl39" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; float:left;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl40.jpg"><img src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl40.jpg" alt="xl40" width="100" height="75" /></a><a class="shutterset_" style="margin-left:5px; clear:both;" href="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/xl41.jpg"><img  src="http://cdn.mogilowski.net/wp-content/gallery/lucidxs56fp1/thumbs/thumbs_xl41.jpg" alt="xl42" /></a></p>
<p><span lang="en-us">The base system installation is now finished. Hit <i>&#8220;Continue&#8221;</i> to reboot the system.</span></p>
<h4><span lang="en-us">2. Install XEN Tools</span></h4>
<p><span lang="en-us">In XenCenter, attach <i>&#8220;xs-tools.iso&#8221;</i> to the DVD drive of the VM.</span><br />
<span lang="en-us">Mount <i>&#8220;xs-tools.iso&#8221;</i>, install the correct XenServer Tools package (replace amd64 with i386 if necessary) and unmount <i>&#8220;xs-tools.iso&#8221;</i>.</span></p>
<pre>mount /dev/cdrom /mnt
dpkg -i /mnt/Linux/xe-guest-utilities_5.6.100-647_amd64.deb
umount /mnt/</pre>
<p><span lang="en-us">At least reboot the VM. Make sure the services run at boot time. If not try this:</span></p>
<pre>update-rc.d -f xe-linux-distribution remove
update-rc.d xe-linux-distribution defaults</pre>
<p><span lang="en-us">Reboot the VM for the last time.</span></p>
<h4><span lang="en-us">3. Convert to template</span></h4>
<p><span lang="en-us">Install all software on your virtual machine you need on all virtual machines and make all settings you need.</span></p>
<p><span lang="en-us">After you have made all your changes and settings shut down the virtual machine.</span></p>
<p><span lang="en-us"><i>&#8220;Right click&#8221;</i> on the virtual machine in your inventory and select <i>&#8220;Convert to Template&#8221;</i></span></p>
<p><span lang="en-us">Now you can create new virtual machines with a basic setup for your environment.</span></p>
<p><span lang="en-us">Select <strong>&#8220;New VM from template&#8221;</strong> and choose your custom template.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2011/02/16/ubuntu-lucid-on-xenserver-5-6-fp1/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Change DNS-Server in XenServer 5.6 FP1</title>
		<link>http://www.mogilowski.net/lang/en-us/2011/02/11/change-dns-server-in-xenserver-5-6-fp1</link>
		<comments>http://www.mogilowski.net/lang/en-us/2011/02/11/change-dns-server-in-xenserver-5-6-fp1#comments</comments>
		<pubDate>Fri, 11 Feb 2011 10:31:36 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Systemadministration]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=844</guid>
		<description><![CDATA[Citrix removed the change DNS from their console. But to change DNS-Server in &#8220;/etc/resolv.conf&#8221; are not solid settings. If you reboot the server the settings will be changed back to the initial configuration. You have to change it with &#8220;xe pif-reconfigure-ip&#8221;. Change DNS-Server First use xe pif-list to get the UUID of your PIF. You [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="en-us">Citrix removed the change DNS from their console. But to change DNS-Server in <i>&#8220;/etc/resolv.conf&#8221;</i> are not solid settings.<br />
If you reboot the server the settings will be changed back to the initial configuration.<br />
You have to change it with <strong>&#8220;xe pif-reconfigure-ip&#8221;</strong>.</span></p>
<h4><span lang="en-us">Change DNS-Server</span></h4>
<p><span lang="en-us">First use</span></p>
<pre>
xe pif-list
</pre>
<p><span lang="en-us">to get the UUID of your PIF. You get an output like this:</span></p>
<pre>
uuid ( RO)                  : PIF-UUID
                device ( RO): eth0
    currently-attached ( RO): true
                  VLAN ( RO): -1
          network-uuid ( RO): NETWORK-UUID
</pre>
<p><span lang="en-us">You can view the current configuration of the interface with <i>&#8220;xe pif-param-list uuid=PIF-UUID&#8221;</i>.</span></p>
<p><span lang="en-us">To change the configration use the following command:</span></p>
<pre>
xe pif-reconfigure-ip uuid=PIF-UUID mode=static IP=IP-ADDRESS netmask=SUBNETMASK gateway=GATEWAY DNS=DNS-SERVER
</pre>
<p><span lang="en-us"><strong>Note:</strong> <i>Use &#8220;DNS=DNS-SERVER-1,DNS-SERVER-2&#8243; to specify more DNS-Servers.</i></span></p>
<p><span lang="en-us">Check your configuration with <i>&#8220;xe pif-param-list uuid=PIF-UUID&#8221;</i>.</span></p>
<h4>Links:</h4>
<p><a href="http://forums.citrix.com/thread.jspa?messageID=1531853" target="_blank">http://forums.citrix.com/thread.jspa?messageID=1531853</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2011/02/11/change-dns-server-in-xenserver-5-6-fp1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Debian Lenny to Squeeze on Citrix XenServer</title>
		<link>http://www.mogilowski.net/lang/en-us/2011/02/07/upgrade-debian-lenny-to-squeeze-on-citrix-xenserver</link>
		<comments>http://www.mogilowski.net/lang/en-us/2011/02/07/upgrade-debian-lenny-to-squeeze-on-citrix-xenserver#comments</comments>
		<pubDate>Mon, 07 Feb 2011 19:27:40 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Systemadministration]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[Squeeze]]></category>
		<category><![CDATA[XENServer]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=821</guid>
		<description><![CDATA[1. Update your Lenny installation Make sure that your current Lenny is up-2-date. aptitude update aptitude upgrade 2. Change sources to Squeeze Open &#8220;/etc/apt/sources.list&#8221; and replace &#8220;Lenny&#8221; with &#8220;Squeeze&#8221; here is an example: # Debian Squeeze deb http://ftp.de.debian.org/debian/ squeeze main deb-src http://ftp.de.debian.org/debian/ squeeze main # Debian Squeeze Security deb http://security.debian.org/ squeeze/updates main 3. Upgrade your [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-822" style="margin-right: 8px;" title="debian" src="http://cdn.mogilowski.net/wp-content/uploads/debian-150x150.gif" alt="Debian Logo" width="150" height="150" /></p>
<h4><span lang="en-us">1. Update your Lenny installation</span></h4>
<p><span lang="en-us">Make sure that your current Lenny is up-2-date.</span></p>
<pre>aptitude update
aptitude upgrade</pre>
<h4><span lang="en-us">2. Change sources to Squeeze</span></h4>
<p><span lang="en-us">Open <strong>&#8220;/etc/apt/sources.list&#8221;</strong> and replace <em>&#8220;Lenny&#8221;</em> with <em>&#8220;Squeeze&#8221;</em> here is an example:</span></p>
<pre># Debian Squeeze
deb http://ftp.de.debian.org/debian/ squeeze main
deb-src http://ftp.de.debian.org/debian/ squeeze main  

# Debian Squeeze Security
deb http://security.debian.org/ squeeze/updates main</pre>
<h4><span lang="en-us">3. Upgrade your system</span></h4>
<pre>aptitude update
aptitude install apt dpkg aptitude
aptitude full-upgrade</pre>
<h4><span lang="en-us">4. Upgrade Grub</span></h4>
<p><span lang="en-us">Debian Squeeze use Grub2 you have to run <em>&#8220;upgrade-from-grub-legacy&#8221;</em> to upgrade from Grub to Grub2.</span></p>
<pre>upgrade-from-grub-legacy
rm -f /boot/grub/menu.lst*</pre>
<p><span lang="en-us">If you don&#8217;t do that, you get the following error in your XenServer.</span></p>
<pre>Error: Starting VM 'YOUR_VM' - Using  to parse /boot/grub/menu.lst - Traceback (most recent call last): - File "/usr/bin/pygrub", line 746, in ? - raise RuntimeError, "Unable to find partition containing kernel" - RuntimeError: Unable to find partition containing kernel</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2011/02/07/upgrade-debian-lenny-to-squeeze-on-citrix-xenserver/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Install VirtualBox 4.0 on Ubuntu / Debian</title>
		<link>http://www.mogilowski.net/lang/en-us/2010/12/23/install-virtualbox-4-0-on-ubuntu-debian</link>
		<comments>http://www.mogilowski.net/lang/en-us/2010/12/23/install-virtualbox-4-0-on-ubuntu-debian#comments</comments>
		<pubDate>Thu, 23 Dec 2010 08:41:34 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=737</guid>
		<description><![CDATA[1. Add new software repository Edit the file &#8221;/etc/apt/sources.list&#8221; with your favorite editor and add the following line depending on your Ubuntu version: &#160; &#160;&#160; Ubuntu 10.10 (Maverick Meerkat) deb http://download.virtualbox.org/virtualbox/debian maverick contrib Ubuntu 10.04 (Lucid Lynx LTS) deb http://download.virtualbox.org/virtualbox/debian lucid contrib Ubuntu 9.10 (Jaunty Jackalope) deb http://download.virtualbox.org/virtualbox/debian karmic contrib 2. Add the GPG-Key wget [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://cdn.mogilowski.net/wp-content/uploads/vbox_logo2_gradient.png" alt="" title=" vbox_logo2_gradient" width="140" height="180" class="alignleft size-full wp-image-738" /></p>
<h4><span lang="en-us">1. Add new software repository</span></h4>
<p><span lang="en-us">Edit the file &#8221;/etc/apt/sources.list&#8221; with your favorite editor and add the following line depending on your Ubuntu version:</span></p>
<p>&#160;</p>
<p>&#160;<br />&#160;</p>
<p><strong><span lang="en-us">Ubuntu 10.10 (Maverick Meerkat)</span></strong></p>
<pre>
deb http://download.virtualbox.org/virtualbox/debian maverick contrib
</pre>
<p><strong><span lang="en-us">Ubuntu 10.04 (Lucid Lynx LTS)</span></strong></p>
<pre>
deb http://download.virtualbox.org/virtualbox/debian lucid contrib
</pre>
<p><strong><span lang="en-us">Ubuntu 9.10 (Jaunty Jackalope)</span></strong></p>
<pre>
deb http://download.virtualbox.org/virtualbox/debian karmic contrib
</pre>
<h4><span lang="en-us">2. Add the GPG-Key</span></h4>
<pre>
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- &#124; sudo apt-key add -
</pre>
<h4><span lang="en-us">3. Install VirtualBox</span></h4>
<pre>
aptitude update
aptitude install virtualbox-4.0 dkms
</pre>
<p><a href="http://cdn.mogilowski.net/wp-content/uploads/virtualbox4-1.jpg"><img src="http://cdn.mogilowski.net/wp-content/uploads/virtualbox4-1.jpg" alt="" title=" virtualbox4-1" width="600" height="456" class="aligncenter size-full wp-image-739" /></a></p>
<h4>Links</h4>
<p>* <a href="http://www.virtualbox.org" target="_blank">http://www.virtualbox.org</a><br />
* <a href="http://www.virtualbox.org/wiki/Changelog" target="_blank">http://www.virtualbox.org/wiki/Changelog</a><br />
* <a href="http://en.wikipedia.org/wiki/VirtualBox" target="_blank">http://en.wikipedia.org/wiki/VirtualBox</a><br />
* <a href="http://de.wikipedia.org/wiki/VirtualBox" target="_blank">http://de.wikipedia.org/wiki/VirtualBox</a></p>
<p><a href="http://cdn.mogilowski.net/wp-content/uploads/virtualbox4-21.jpg"><img src="http://cdn.mogilowski.net/wp-content/uploads/virtualbox4-21.jpg" alt="" title=" virtualbox4-2" width="500" height="433" class="aligncenter size-full wp-image-741" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2010/12/23/install-virtualbox-4-0-on-ubuntu-debian/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Open Virtualization Format Tool</title>
		<link>http://www.mogilowski.net/lang/en-us/2010/11/30/vmware-open-virtualization-format-tool</link>
		<comments>http://www.mogilowski.net/lang/en-us/2010/11/30/vmware-open-virtualization-format-tool#comments</comments>
		<pubDate>Tue, 30 Nov 2010 10:22:58 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[converter]]></category>
		<category><![CDATA[ovf]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmx]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=709</guid>
		<description><![CDATA[Command line utility that supports import and export of OVF packages. Download Download VMWare Open Virtualization Format Tool here: http://communities.vmware.com/community/vmtn/vsphere/automationtools/ovf You can download this tool for Windows (64-Bit or 32-Bit), Linux (64-Bit or 32-Bit) and Mac OSX. Install chmod +x VMware-ovftool-2.0.1-260188-lin.x86_64.sh ./VMware-ovftool-2.0.1-260188-lin.x86_64.sh Convert OVF to VMX /opt/vmware/ovftool/ovftool /path/to/vm.ovf /path/to/vm.vmx Convert VMX to OVF /opt/vmware/ovftool/ovftool /path/to/vm.vmx [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="en-us">Command line utility that supports import and export of OVF packages.</span></p>
<h4><span lang="en-us">Download</span></h4>
<p><span lang="en-us">Download VMWare Open Virtualization Format Tool here:</span></p>
<p><a href="http://communities.vmware.com/community/vmtn/vsphere/automationtools/ovf" target="_blank">http://communities.vmware.com/community/vmtn/vsphere/automationtools/ovf</a></p>
<p><span lang="en-us">You can download this tool for Windows (64-Bit or 32-Bit), Linux (64-Bit or 32-Bit) and Mac OSX.</span></p>
<h4><span lang="en-us">Install</span></h4>
<pre>
chmod +x VMware-ovftool-2.0.1-260188-lin.x86_64.sh
./VMware-ovftool-2.0.1-260188-lin.x86_64.sh
</pre>
<h4><span lang="en-us">Convert OVF to VMX</span></h4>
<pre>
/opt/vmware/ovftool/ovftool /path/to/vm.ovf /path/to/vm.vmx
</pre>
<h4><span lang="en-us">Convert VMX to OVF</span></h4>
<pre>
/opt/vmware/ovftool/ovftool /path/to/vm.vmx /path/to/vm.ovf
</pre>
<h4><span lang="en-us">More inforamtions and examples</span></h4>
<p><span lang="en-us">See more examples in the documentation:</span></p>
<p><a href="http://www.vmware.com/support/developer/ovf/ovf20/ovftool_201_userguide.pdf" target="_blank">OVF Tool Userguide</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2010/11/30/vmware-open-virtualization-format-tool/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding an additional local storage to an existing XENServer</title>
		<link>http://www.mogilowski.net/lang/en-us/2010/11/24/adding-an-additional-local-storage-to-an-existing-xenserver</link>
		<comments>http://www.mogilowski.net/lang/en-us/2010/11/24/adding-an-additional-local-storage-to-an-existing-xenserver#comments</comments>
		<pubDate>Wed, 24 Nov 2010 08:23:42 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[XEN]]></category>
		<category><![CDATA[XENServer]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=701</guid>
		<description><![CDATA[Add the new physical device &#8220;/dev/sdb&#8221; as second local storage to an existing Citrix XENServer installation: (Note: I use XENServer 5.6) xe sr-create content-type="local SR" host-uuid=(uuid of your xenserver host) type=(ext or lvm) device-config:device=/dev/sdb shared=false name-label="Second local storage" The command returns the UUID of your new storage repository (SR). Example: xe sr-create content-type="local SR" host-uuid=d06d7c86-08af-4f87-9188-bd287daac20b [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cdn.mogilowski.net/wp-content/uploads/xen_sr_add1.jpg"><img class="alignleft size-full wp-image-702" title=" xen_sr_add1" src="http://cdn.mogilowski.net/wp-content/uploads/xen_sr_add1.jpg" alt="" width="230" height="117" /></a></p>
<p><span lang="en-us">Add the new physical device &#8220;/dev/sdb&#8221; as second local storage to an existing Citrix XENServer installation:</span></p>
<p><span lang="en-us">(Note: I use XENServer 5.6)</span></p>
<pre>
xe sr-create content-type="local SR" host-uuid=(uuid of your xenserver host) type=(ext or lvm) device-config:device=/dev/sdb shared=false name-label="Second local storage"
</pre>
<p><span lang="en-us">The command returns the UUID of your new storage repository (SR).</span></p>
<p><span lang="en-us">Example:</span></p>
<pre>
xe sr-create content-type="local SR" host-uuid=d06d7c86-08af-4f87-9188-bd287daac20b type=lvm device-config:device=/dev/sdb shared=false name-label="Second local storage"
6b9fe5d2-bf6c-d776-dfb0-743f5b1f397c
</pre>
<p><span lang="en-us">If you want to set the new SR to the new default SR:</span></p>
<pre>
xe pool-param-set default-SR=[YOUR NEW SR UUID]  uuid=(uuid of your xenserver host)
</pre>
<p><span lang="en-us">Notes: You can use &#8220;pvdisplay&#8221; to lists all physical volumes.</span></p>
<pre>
[root@xen2 ~]# pvdisplay
  --- Physical volume ---
  PV Name               /dev/sdb
  VG Name               VG_XenStorage-6b9fe5d2-bf6c-d776-dfb0-743f5b1f397c
  PV Size               596.17 GB / not usable 7.79 MB
  Allocatable           yes
  PE Size (KByte)       4096
  Total PE              152617
  Free PE               150561
  Allocated PE          2056
  PV UUID               jKstcw-WSWy-EOWn-NUlq-fdM6-SwEC-eHwJSL

  --- Physical volume ---
  PV Name               /dev/sda3
  VG Name               VG_XenStorage-714f456f-7b1e-da9d-9022-153ebaec6cdc
  PV Size               588.17 GB / not usable 6.31 MB
  Allocatable           yes
  PE Size (KByte)       4096
  Total PE              150568
  Free PE               145772
  Allocated PE          4796
  PV UUID               U0Docl-IzMr-L7s0-nGCA-hTyQ-sHdk-2lVtJ2
</pre>
<p style="text-align: center;"><a href="http://cdn.mogilowski.net/wp-content/uploads/xen_sr_add21.jpg"><img class="aligncenter size-full wp-image-704" title=" xen_sr_add2" src="http://cdn.mogilowski.net/wp-content/uploads/xen_sr_add21.jpg" alt="" width="617" height="163" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2010/11/24/adding-an-additional-local-storage-to-an-existing-xenserver/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use VNC to access VMware Servers</title>
		<link>http://www.mogilowski.net/lang/en-us/2010/10/25/how-to-use-vnc-to-access-vmware-servers</link>
		<comments>http://www.mogilowski.net/lang/en-us/2010/10/25/how-to-use-vnc-to-access-vmware-servers#comments</comments>
		<pubDate>Mon, 25 Oct 2010 10:48:50 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware server]]></category>
		<category><![CDATA[VNC]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=694</guid>
		<description><![CDATA[Edit the &#8220;.vmx&#8221; file of your virtual machine and add this lines: RemoteDisplay.vnc.enabled = "TRUE" RemoteDisplay.vnc.port = "5900" RemoteDisplay.vnc.password = "YOUR_PASSWORD" Note: Use a different port for each virtual machine. Links: * http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&#038;externalId=1246]]></description>
			<content:encoded><![CDATA[<p><span lang="en-us">Edit the &#8220;.vmx&#8221; file of your virtual machine and add this lines:</span></p>
<pre>
RemoteDisplay.vnc.enabled = "TRUE"
RemoteDisplay.vnc.port = "5900"
RemoteDisplay.vnc.password = "YOUR_PASSWORD"
</pre>
<p><i><span lang="en-us">Note: Use a different port for each virtual machine.</span></i></p>
<h3>Links:</h3>
<p>* <a href="http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&#038;externalId=1246" target="_blank">http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&#038;externalId=1246</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2010/10/25/how-to-use-vnc-to-access-vmware-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Server 2, Proxysvc SSL Handshake problems</title>
		<link>http://www.mogilowski.net/lang/en-us/2010/09/20/vmware-server-2-proxysvc-ssl-handshake-problems</link>
		<comments>http://www.mogilowski.net/lang/en-us/2010/09/20/vmware-server-2-proxysvc-ssl-handshake-problems#comments</comments>
		<pubDate>Mon, 20 Sep 2010 12:34:58 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=675</guid>
		<description><![CDATA[Get this server in /var/log/vmware/hostd.log if you want to connect to your VMWare Server ? Proxysvc SSL Handshake on client connection failed: SSL Exception Open about:config in Firefox and change security.enable.ssl2 from false into true In some cases you have to kill the vmware-hostd process and restart the management deamon: /etc/init.d/vmware-mgmt restart Links * http://planetvm.net/blog/?p=1087 [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="en-us">Get this server in <em>/var/log/vmware/hostd.log</em> if you want to connect to your VMWare Server ?</span></p>
<pre>Proxysvc SSL Handshake on client connection failed: SSL Exception</pre>
<p><span lang="en-us">Open <strong>about:config</strong> in Firefox and change</span></p>
<pre>security.enable.ssl2 from false into true</pre>
<p><span lang="en-us">In some cases you have to kill the <strong>vmware-hostd</strong> process and restart the management deamon:</span></p>
<pre>/etc/init.d/vmware-mgmt restart</pre>
<h3>Links</h3>
<p>* <a href="http://planetvm.net/blog/?p=1087">http://planetvm.net/blog/?p=1087</a><br />
* <a href="http://communities.vmware.com/thread/240209?tstart=0">http://communities.vmware.com/thread/240209?tstart=0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2010/09/20/vmware-server-2-proxysvc-ssl-handshake-problems/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 111/194 queries in 0.170 seconds using apc
Object Caching 1176/1176 objects using apc
Content Delivery Network via cdn.mogilowski.net

Served from: www.mogilowski.net @ 2012-02-05 02:43:06 -->
