<?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>Technoblog.org &#187; ESX 3.5</title>
	<atom:link href="http://technoblog.org/tag/esx-35/feed/" rel="self" type="application/rss+xml" />
	<link>http://technoblog.org</link>
	<description>Technoblogging</description>
	<lastBuildDate>Tue, 12 Apr 2011 11:47:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>How to kill a VM (VMware ESX 4.0)</title>
		<link>http://technoblog.org/2010/07/how-to-kill-a-vm-vmware-esx-4-0/</link>
		<comments>http://technoblog.org/2010/07/how-to-kill-a-vm-vmware-esx-4-0/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 18:00:17 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[vmware]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESX 3.x]]></category>
		<category><![CDATA[ESX 4.0]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[ESXi 3.x]]></category>
		<category><![CDATA[vm-support]]></category>
		<category><![CDATA[vmkload_app]]></category>
		<category><![CDATA[VMware ESX 3.5]]></category>
		<category><![CDATA[VMware ESX 4.0]]></category>
		<category><![CDATA[vmware-cmd]]></category>
		<category><![CDATA[vSphere 4.0]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=104</guid>
		<description><![CDATA[Alright, it happens from time to time. Virtual Machines get stuck. Sometimes during boot, sometimes during shutdown and sometimes during a restore operation. So how do I kill a Virtual Machine? I wrote this post, back in 2009, for ESX 3.5: http://technoblog.org/2009/01/how-to-kill-a-stuck-or-hung-vm-vmware-esx-35/ Both the &#8220;vmware-cmd /.vmx stop hard&#8221; method, and the following methods work, sometimes.. [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, it happens from time to time. Virtual Machines get stuck.<br />
Sometimes during boot, sometimes during shutdown and sometimes during a restore operation.</p>
<p>So how do I kill a Virtual Machine?</p>
<p>I wrote this post, back in 2009, for ESX 3.5:<br />
<a href="http://technoblog.org/2009/01/how-to-kill-a-stuck-or-hung-vm-vmware-esx-35/">http://technoblog.org/2009/01/how-to-kill-a-stuck-or-hung-vm-vmware-esx-35/</a></p>
<p>Both the &#8220;vmware-cmd
<path-to-file>/<vname>.vmx stop hard&#8221; method, and the following methods work, sometimes.. :</p>
<p>1. sudo vm-support -x<br />
2. sudo less -S /proc/vmware/vm/<vmid>/cpu/status<br />
3. sudo /usr/lib/vmware/bin/vmkload_app -k 9 <group-vm-id></p>
<p>But, when both of those fail? Then what?<br />
How to kill a stuck VM when everything else fails?</p>
<p>It&#8217;s a bit brutal, but it works, but be warned, you might corrupt your VM.</p>
<p>1. sudo bash (for simplicity)<br />
2. ps -ax | grep
<part-of-the-vm-name>
3. Find the first number to the left, in the string with the right VM. This is the PID.<br />
4. kill -9 <PID></p>
<p>Brutal? Yes. Efficient? Yes.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2010/07/how-to-kill-a-vm-vmware-esx-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to restart the management service in VMware ESX 3.5</title>
		<link>http://technoblog.org/2009/04/how-to-restart-the-management-service-vmware-esx-35/</link>
		<comments>http://technoblog.org/2009/04/how-to-restart-the-management-service-vmware-esx-35/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 10:45:04 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESX 3.x]]></category>
		<category><![CDATA[mgmt-vmware]]></category>
		<category><![CDATA[VI Client]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[VMware Infrastructure Client]]></category>
		<category><![CDATA[vmware-cmd]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=39</guid>
		<description><![CDATA[How to restart the management on a VMware ESX 3.5: SSH to the vmware-esx box and do a: sudo service mgmt-vmware stop sudo service mgmt-vmware start or a: service mgmt-vmware restart or as root just: service mgmt-vmware stop service mgmt-vmware start or: service mgmt-vmware restart This would be the solution if you can&#8217;t connect to [...]]]></description>
			<content:encoded><![CDATA[<p>How to restart the management on a VMware ESX 3.5:<br />
SSH to the vmware-esx box and do a:<br />
<em>sudo service mgmt-vmware stop</em><br />
<em>sudo service mgmt-vmware start</em><br />
or a:<br />
<em>service mgmt-vmware restart</em></p>
<p>or as <strong>root</strong> just:<br />
<em>service mgmt-vmware stop</em><br />
<em>service mgmt-vmware start</em><br />
or:<br />
<em>service mgmt-vmware restart</em></p>
<p>This would be the solution if you can&#8217;t connect to the box using VMware Infrastructure Client, like if you get an error saying:<br />
Error Connecting<br />
VMware Infrastructure Client could not establish the initial connection with the server &#8220;<server name>&#8220;.<br />
Details: The server took too long to respond.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2009/04/how-to-restart-the-management-service-vmware-esx-35/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESX 3.x and ESXi 3.x command line guide</title>
		<link>http://technoblog.org/2009/01/esx-3x-and-esxi-3x-command-line-guide/</link>
		<comments>http://technoblog.org/2009/01/esx-3x-and-esxi-3x-command-line-guide/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 15:03:07 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[command line guide]]></category>
		<category><![CDATA[command line reference]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESX 3.x]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[ESXi 3.x]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=31</guid>
		<description><![CDATA[While googling around for some documentation of some ESX specific commands, I discovered this command line reference guide for ESX 3.x and ESXi 3.x , written by B2V. Its worth taking a look at.]]></description>
			<content:encoded><![CDATA[<p>While googling around for some documentation of some ESX specific commands, I discovered this <a title="ESX 3.x and ESXi 3.x command line reference guide" href="http://b2v.co.uk/b2vguide2vmware3.htm" target="_blank">command line reference guide for ESX 3.x and ESXi 3.x</a> , written by B2V.</p>
<p>Its worth taking a look at.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2009/01/esx-3x-and-esxi-3x-command-line-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare ESX 3.5 express patch working</title>
		<link>http://technoblog.org/2008/08/vmware-esx-35-express-patch-working/</link>
		<comments>http://technoblog.org/2008/08/vmware-esx-35-express-patch-working/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 11:12:18 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[A General System error occurred: Internal error]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=20</guid>
		<description><![CDATA[I can now confirm that the express patch VMWare released earlier today is working (tested on ESXi 3.5).]]></description>
			<content:encoded><![CDATA[<p>I can now confirm that the express patch VMWare released earlier today is working (tested on ESXi 3.5).</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/vmware-esx-35-express-patch-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware ESX 3.5.x Bug Update!</title>
		<link>http://technoblog.org/2008/08/vmware-esx-35x-bug-update/</link>
		<comments>http://technoblog.org/2008/08/vmware-esx-35x-bug-update/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 06:23:39 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[A General System error occurred: Internal error]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=17</guid>
		<description><![CDATA[The express patch is here! VMWare released it some hours ago. You can download it, and read more on VMWare&#8217;s page: VMware ESX/ESXi 3.5 Update 2 Patch Release]]></description>
			<content:encoded><![CDATA[<p>The express patch is here! VMWare released it some hours ago. You can download it, and read more on VMWare&#8217;s page: <a title="VMware ESX/ESXi 3.5 Update 2 Patch Release" href="http://www.vmware.com/landing_pages/esxexpresspatches.html">VMware ESX/ESXi 3.5 Update 2 Patch Release</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/vmware-esx-35x-bug-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware ESX 3.5.x Bug and the solution</title>
		<link>http://technoblog.org/2008/08/vmware-esx-35x-bug-and-the-solution/</link>
		<comments>http://technoblog.org/2008/08/vmware-esx-35x-bug-and-the-solution/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 12:47:58 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[A General System error occurred: Internal error]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=14</guid>
		<description><![CDATA[Ok, so there is a really big bug in VMWare ESX 3.5/3.5i Update 2. So if you are running an older version, don&#8217;t upgrade! If you try to power on or resume a suspended Virtual Machine, you get the following error: A general system error occurred: Internal Error This Product has expired. Be sure that [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so there is a really big bug in VMWare ESX 3.5/3.5i Update 2. So if you are running an older version, don&#8217;t upgrade! If you try to power on or resume a suspended Virtual Machine, you get the following error:</p>
<blockquote><p>A general system error occurred: Internal Error<br />
This Product has expired. Be sure that your host machine&#8217;s date and time are set correctly.</p></blockquote>
<p>The products affected are:</p>
<ul>
<li>VMware ESX 3.5.x</li>
<li>VMware ESXi 3.5.x Embedded</li>
<li>VMware ESXi 3.5.x Installable</li>
</ul>
<p>There is a knowledge base article about it: <a title="Unable to Power On virtual machine with “A General System error occurred: Internal error”" href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1006716">Unable to Power On virtual machine with “A General System error occurred: Internal error”<br />
</a></p>
<p>But according to the kb article:</p>
<blockquote><p>An issue with ESX/ESXi 3.5 Update 2 causes the product license to expire on August 12, 2008. VMware engineering has isolated the root cause of this issue and will reissue the various upgrade media including the ESX 3.5 Update 2 ISO, ESXi 3.5 Update 2 ISO, ESX 3.5 Update 2 upgrade tar and zip files by noon, PST on August 13.  These will be available from the page: http://www.vmware.com/download/vi.  Until then, VMware advises against upgrading to ESX/ESXi 3.5 Update 2.</p>
<p>The Update patch bundles will be released separately later in the week</p></blockquote>
<p>So? What if you&#8217;ve already upgraded. Some of you might run your entire infrastructure on ESX, and if &#8220;waiting for a patch&#8221; doesn&#8217;t sound like a suitable solution, there is a workaround!</p>
<p><strong>The Workaround</strong></p>
<p>Note: This is only tested on a ESXi 3.5 machine. If you try it on a ESX machine you might need to change the date format, just give it a try.</p>
<p>1. Log in to the Service Console (its the Command Line Interface).</p>
<p>2. Write <em><strong>date -s “08102008&#8243; </strong></em>and press enter.</p>
<p>You should now be able to power on your Virtual Machines (or resume them).</p>
<p>Note: You are setting back the date, so if you are running critical infrastructure on your virtual machines, you might want to turn of &#8220;host time sync&#8221;. So your VMs won&#8217;t sync the time with the server. And if you are running NTP on your ESX/i-server you should turn it off (if you don&#8217;t, there is no point in setting back the time).</p>
<p>You also might want to set the time further back, like a couple of weeks, depending on how long time you think VMWare will use to get the patch ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/vmware-esx-35x-bug-and-the-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

