<?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>VCritical &#187; SSH</title>
	<atom:link href="http://www.vcritical.com/tag/ssh/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vcritical.com</link>
	<description>Informed Virtualization Criticism</description>
	<lastBuildDate>Mon, 12 Jul 2010 22:38:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing vCenter on Linux Technical Preview</title>
		<link>http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/</link>
		<comments>http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 21:22:10 +0000</pubDate>
		<dc:creator>Eric Gray</dc:creator>
				<category><![CDATA[Virtualizationism]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[vCenter]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.vcritical.com/?p=740</guid>
		<description><![CDATA[vCenter on Linux is distributed as a virtual appliance; it is really easy to try out.  However, the only supported database at the moment is Oracle &#8212; this might be a stumbling block for some.  While the installation guide covers everything you need to know, here are some quick tips that may help clarify some [...]]]></description>
			<content:encoded><![CDATA[<p>vCenter on Linux is distributed as a <a href="http://communities.vmware.com/community/beta/vcserver_linux" target="_blank">virtual appliance</a>; it is really easy to try out.  However, the only supported database at the moment is Oracle &#8212; this might be a stumbling block for some.  While the <a href="http://communities.vmware.com/docs/DOC-9580" target="_blank">installation guide</a> covers everything you need to know, here are some quick tips that may help clarify some of the more complicated parts.</p>
<h2>Fire up the vCenter Linux Appliance</h2>
<p>Download the OVF and import it to your ESX host.</p>
<p><img class="alignnone size-full wp-image-743" title="Importing the vCenter on Linux OVF package." src="http://www.vcritical.com/wp-content/uploads/2009/02/importing_vclinux_ovf.png" alt="Importing the vCenter on Linux OVF package." width="484" height="287" /></p>
<p>Power it on and accept the EULA, you will end up at this screen:<span id="more-740"></span></p>
<p><a href="http://www.vcritical.com/wp-content/uploads/2009/02/initial_boot_vclinux.png"><img class="alignnone size-medium wp-image-747" title="Initial boot of vCenter on Linux" src="http://www.vcritical.com/wp-content/uploads/2009/02/initial_boot_vclinux-300x172.png" alt="Initial boot of vCenter on Linux" width="300" height="172" /></a></p>
<blockquote><p><strong>NOTE</strong>: VMware accidentally included the  Highly Confidential Beta Software EULA with the vCenter on Linux appliance.  I have confirmed with one of the beta program managers and product management that this is not a private beta.  After all, <a href="http://vmworld.com/community/conferences/europe2009/agenda/keynotes/2" target="_blank">Dr. Stephen Herrod told everyone about it in his keynote</a> today.</p></blockquote>
<p>Next, configure networking via the menu option or determine the current DHCP IP address &#8212; log in as root/vmware and run ifconfig (or just look at the VI Client summary for the VM).</p>
<p>Download the two instant client packages from Oracle to your workstation, as specified in the install documentation.  Copy them to the vCenter VM, like this:</p>
<p><img class="alignnone size-full wp-image-745" title="Use PuTTY pscp to copy Oracle drivers to vCenter on Linux." src="http://www.vcritical.com/wp-content/uploads/2009/02/scp_oracle_drivers_to_vclinux.png" alt="Use PuTTY pscp to copy Oracle drivers to vCenter on Linux." width="471" height="436" /></p>
<h2>Prepare an Oracle Database</h2>
<p>I&#8217;m not going to cover how to install Oracle.  Let&#8217;s just say it&#8217;s not a next-next-finish operation.  You can get the free Oracle Express Edition or use an existing instance already present in your environment.  What I <em>will </em>give you is a simple recipe to prepare your Oracle instance for hosting a vCenter database.</p>
<p>Save the following code as &#8220;vpxadmin.sql&#8221; on your Oracle server.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">CREATE</span> SMALLFILE TABLESPACE <span style="color: #ff0000;">&quot;VPX&quot;</span> DATAFILE <span style="color: #ff0000;">'/u01/app/oracle/oradata/vcdb/vpx01.dbf'</span> SIZE 100M AUTOEXTEND <span style="color: #993333; font-weight: bold;">ON</span> NEXT 10M MAXSIZE UNLIMITED LOGGING EXTENT MANAGEMENT <span style="color: #993333; font-weight: bold;">LOCAL</span> SEGMENT SPACE MANAGEMENT AUTO;
&nbsp;
<span style="color: #993333; font-weight: bold;">CREATE</span> USER <span style="color: #ff0000;">&quot;VPXADMIN&quot;</span> PROFILE <span style="color: #ff0000;">&quot;DEFAULT&quot;</span> <span style="color: #993333; font-weight: bold;">IDENTIFIED</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #ff0000;">&quot;secretpassword&quot;</span> <span style="color: #993333; font-weight: bold;">DEFAULT</span> TABLESPACE <span style="color: #ff0000;">&quot;VPX&quot;</span> ACCOUNT <span style="color: #993333; font-weight: bold;">UNLOCK</span>;
&nbsp;
<span style="color: #993333; font-weight: bold;">GRANT</span> connect <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> resource <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">VIEW</span> <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> any sequence <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> any <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> execute <span style="color: #993333; font-weight: bold;">ON</span> dbms_job <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> execute <span style="color: #993333; font-weight: bold;">ON</span> dbms_lock <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> unlimited tablespace <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;</pre></div></div>

<p>Then, just execute it:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ sqlplus <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #c20cb9; font-weight: bold;">as</span> sysdba <span style="color: #000000; font-weight: bold;">@</span>vpxadmin.sql</pre></div></div>

<p>This will create a tablespace and credentials for your vCenter database.</p>
<p>These four things are required in order to connect vCenter on Linux to Oracle:</p>
<ol>
<li>Hostname or IP address</li>
<li>Instance name &#8211; by default in Oracle this is often &#8220;orcl&#8221; but you or your DBA may have changed it.  You probably need the fully-qualified version, which would be something like &#8220;orcl.whatever.yourcompany.com&#8221; &#8212; this likely is not the same as the FQDN/hostname of the server.  In the following example, I am using &#8220;vcdb.vmware.com&#8221; as my instance.</li>
<li>Login id: VPXADMIN</li>
<li>Password: secretpassword (please change this)</li>
</ol>
<h2>Configure vCenter on Linux Database Connection</h2>
<p>Reboot the vCenter VM.  On next boot, the Oracle drivers are detected and installed automatically:</p>
<p><a href="http://www.vcritical.com/wp-content/uploads/2009/02/oracle_client_auto_install.png"><img class="alignnone size-medium wp-image-744" title="Oracle client automatically detected and installed on vCenter boot." src="http://www.vcritical.com/wp-content/uploads/2009/02/oracle_client_auto_install-300x208.png" alt="Oracle client automatically detected and installed on vCenter boot." width="300" height="208" /></a></p>
<p>Enter your Oracle connection information and you are done:</p>
<p><img class="size-full wp-image-742 alignnone" title="Entering Oracle connection information for vCenter on Linux." src="http://www.vcritical.com/wp-content/uploads/2009/02/entering_oracle_connection_info_on_vclinux.png" alt="Entering Oracle connection information for vCenter on Linux." width="372" height="161" /></p>
<h2>Connect to vCenter on Linux with the VI Client</h2>
<p>If you already have a recent VI Client installed, you should be able to use it &#8212; or download and install by pointing your web browser to your vCenter VM IP.  When you are ready, log in to your new vCenter on Linux (use the root account, not the database account), create a datacenter, add hosts, and try it out.</p>


<p>Related posts:<ol><li><a href='http://www.vcritical.com/2009/03/vcenter-for-linux-article-disappointing/' rel='bookmark' title='Permanent Link: vCenter for Linux article disappointing'>vCenter for Linux article disappointing</a></li>
<li><a href='http://www.vcritical.com/2009/04/vmware-vcenter-really-needs-an-agent/' rel='bookmark' title='Permanent Link: VMware vCenter really needs an agent'>VMware vCenter really needs an agent</a></li>
<li><a href='http://www.vcritical.com/2009/04/vmware-vcenter-server-4-task-and-event-retention/' rel='bookmark' title='Permanent Link: VMware vCenter Server 4 task and event retention'>VMware vCenter Server 4 task and event retention</a></li>
<li><a href='http://www.vcritical.com/2009/04/hyper-v-linux-integration-components-no-longer-connected/' rel='bookmark' title='Permanent Link: Hyper-V Linux integration components no longer Connected'>Hyper-V Linux integration components no longer Connected</a></li>
</ol></p><div style="font-family:Verdana; color:#000000; background-color: #C0C0C0; padding: 7px;border: dashed thin">

<a href="http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/#comments">Leave a Comment</a> •
<a href="http://feedproxy.google.com/vcritical">Subscribe to RSS</a> •
<a href="http://feedburner.google.com/fb/a/mailverify?uri=vcritical&loc=en_US">Subscribe via Email</a> •
<a href="http://www.twitter.com/eric_gray">Follow Eric Gray on Twitter</a><br/>

More articles on: <a href="http://www.vcritical.com/tag/linux/" rel="tag">Linux</a>, <a href="http://www.vcritical.com/tag/oracle/" rel="tag">Oracle</a>, <a href="http://www.vcritical.com/tag/pass/" rel="tag">PASS</a>, <a href="http://www.vcritical.com/tag/ssh/" rel="tag">SSH</a>, <a href="http://www.vcritical.com/tag/vcenter/" rel="tag">vCenter</a>, <a href="http://www.vcritical.com/tag/vmware/" rel="tag">VMware</a> • <a href="http://www.vcritical.com/category/virtualizationism/">Browse All Virtualization Content</a><br/>

<a href="http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/">Installing vCenter on Linux Technical Preview</a> by <a href="http://www.vcritical.com/about/">Eric Gray</a> © 2009 • <a href="http://www.vcritical.com/">VCritical</a>

</div>]]></content:encoded>
			<wfw:commentRss>http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Get a better font for PuTTY</title>
		<link>http://www.vcritical.com/2009/01/get-a-better-font-for-putty/</link>
		<comments>http://www.vcritical.com/2009/01/get-a-better-font-for-putty/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 21:32:29 +0000</pubDate>
		<dc:creator>Eric Gray</dc:creator>
				<category><![CDATA[Virtualizationism]]></category>
		<category><![CDATA[PuTTY]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.vcritical.com/?p=531</guid>
		<description><![CDATA[PuTTY is a popular SSH client for Windows &#8212; it works great and it&#8217;s free.  Out of the box it uses the Courier font, which looks like this:

I prefer the appearance of a traditional Linux (X11) console font.  To me, it makes text much easier to read.  A few years ago I came across a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a> is a popular SSH client for Windows &#8212; it works great and it&#8217;s free.  Out of the box it uses the Courier font, which looks like this:</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-532" title="PuTTY with default Courier font" src="http://www.vcritical.com/wp-content/uploads/2009/01/putty-courier.png" alt="PuTTY with default Courier font" width="500" height="293" /></p>
<p>I prefer the appearance of a traditional Linux (X11) console font.  To me, it makes text much easier to read.  A few years ago I came across a nice-looking Windows version of that font that works great with PuTTY.   <span id="more-531"></span>Observe the difference:<br />
<img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-533" title="PuTTY with MiscFixed SC613 9-point font" src="http://www.vcritical.com/wp-content/uploads/2009/01/putty-miscfixedsc613-9pt.png" alt="PuTTY with MiscFixed SC613 9-point font" width="400" height="237" /></p>
<p>If you like this better, simply download the <a href="http://www.twoevils.org/files/fonts/MISCFS__.TTF">MiscFixedSC613</a> font from April King and drop it into c:\windows\fonts.  When you configure PuTTY, remember that this is a 9-point font <em>only</em>.</p>
<p>While we are on the topic of PuTTY, here is another tip.  Although PuTTY has a sophisticated configuration dialog that allows storing of profiles for hosts, I&#8217;ve found that it is generally easier if I skip all that and launch it the same way I use <strong>ssh</strong> from a Linux machine.  To do this, make sure putty.exe is in your PATH, open the Run dialog and type in <strong>putty user@host</strong>, like so:<strong><br />
</strong></p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-534" title="Launching PuTTY from the Run dialog." src="http://www.vcritical.com/wp-content/uploads/2009/01/run-putty.png" alt="Launching PuTTY from the Run dialog." width="347" height="186" /></p>
<p>No muss, no fuss, no empty cans.</p>


<p>Related posts:<ol><li><a href='http://www.vcritical.com/2009/02/better-console-for-powershell-and-vitk/' rel='bookmark' title='Permanent Link: Better console for PowerShell and VITK'>Better console for PowerShell and VITK</a></li>
<li><a href='http://www.vcritical.com/2009/02/vi-toolkit-for-windows-15-and-the-powershell-prompt/' rel='bookmark' title='Permanent Link: VI Toolkit (for Windows) 1.5 and the PowerShell prompt'>VI Toolkit (for Windows) 1.5 and the PowerShell prompt</a></li>
<li><a href='http://www.vcritical.com/2010/04/dear-red-hat/' rel='bookmark' title='Permanent Link: Dear Red Hat&#8230;'>Dear Red Hat&#8230;</a></li>
<li><a href='http://www.vcritical.com/2009/10/easy-recovery-from-a-full-vmware-esx-datastore/' rel='bookmark' title='Permanent Link: Easy recovery from a full VMware ESX datastore'>Easy recovery from a full VMware ESX datastore</a></li>
</ol></p><div style="font-family:Verdana; color:#000000; background-color: #C0C0C0; padding: 7px;border: dashed thin">

<a href="http://www.vcritical.com/2009/01/get-a-better-font-for-putty/#comments">Leave a Comment</a> •
<a href="http://feedproxy.google.com/vcritical">Subscribe to RSS</a> •
<a href="http://feedburner.google.com/fb/a/mailverify?uri=vcritical&loc=en_US">Subscribe via Email</a> •
<a href="http://www.twitter.com/eric_gray">Follow Eric Gray on Twitter</a><br/>

More articles on: <a href="http://www.vcritical.com/tag/putty/" rel="tag">PuTTY</a>, <a href="http://www.vcritical.com/tag/ssh/" rel="tag">SSH</a>, <a href="http://www.vcritical.com/tag/technical/" rel="tag">Technical</a> • <a href="http://www.vcritical.com/category/virtualizationism/">Browse All Virtualization Content</a><br/>

<a href="http://www.vcritical.com/2009/01/get-a-better-font-for-putty/">Get a better font for PuTTY</a> by <a href="http://www.vcritical.com/about/">Eric Gray</a> © 2009 • <a href="http://www.vcritical.com/">VCritical</a>

</div>]]></content:encoded>
			<wfw:commentRss>http://www.vcritical.com/2009/01/get-a-better-font-for-putty/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
