<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>ESX on the IBM System i</title>
    <link>http://communities.vmware.com/blogs/ESX-on-IBM-System-i</link>
    <description>This is all about my experiences running ESX on IBM BladeCenter and System x integration with IBM System i</description>
    <pubDate>Wed, 04 Mar 2009 02:20:44 GMT</pubDate>
    <generator>Clearspace 1.10.12 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2009-03-04T02:20:44Z</dc:date>
    <item>
      <title>VMware Consolidated Backup on System i - howto</title>
      <link>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/2009/03/03/vmware-consolidated-backup-on-system-i-howto</link>
      <description>&lt;br /&gt;
So I finally have this prefected - I had to do a lot of CL Programming, and had to do a lot of tweaking to get this working.  I will try and put everything in here that I went through to get it working.  What I can do is post everything I have in place today.  I hope you're a good CL programmer, or know one &lt;img class="jive-emoticon" border="0" src="http://communities.vmware.com/images/emoticons/happy.gif" alt=":)" /&gt;&lt;br /&gt;
&lt;p /&gt;
First, make sure all the VM's have the VMware Tools with the "Volume Shadow Copy Services Support " selected.  This doesn't get installed by default.&lt;br /&gt;
&lt;p /&gt;
Second, on the Integrated Server that will be your VCB Proxy do the following.&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Install the VMware Consolidated Backup Framework&lt;/li&gt;
&lt;li&gt;Created a secondary drive (I call mine the V:\ drive)  We'll talk about the size of this drive later - so read this whole thing before you do anything&lt;/li&gt;
&lt;li&gt;create a folder in the V:\ drive called mnt and share it
&lt;ul&gt;
&lt;li&gt;Make sure you have share name in your QUSRSYS/QAZLCSAVL file - see here &lt;a class="jive-link-external" href="http://publib.boulder.ibm.com/infocenter/systems/scope/i5os/index.jsp?topic=/rzahq/rzahqflbackupsetup.htm"&gt;http://publib.boulder.ibm.com/infocenter/systems/scope/i5os/index.jsp?topic=/rzahq/rzahqflbackupsetup.htm&lt;/a&gt; for help&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Create a Batch program to do the mounting, and another to do the unmounting - this is for file level backups&lt;/li&gt;
&lt;li&gt;I put these in a directory called c:\vcb
&lt;ul&gt;
&lt;li&gt;mount.bat - your vCenter Server probably isn't called vcenter.acme.com and the uid and pwd probably need to be changed too
&lt;ul&gt;
&lt;li&gt;"C:\Program Files\VMware\VMware Consolidated Backup Framework\vcbmounter" -h vcenter.acme.com -u Adminaccount -p adminspassword -a name:%1 -r v:\mnt\%1 -t file -m nbd&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;unmount.bat - same rules apply here
&lt;ul&gt;
&lt;li&gt;"C:\Program Files\VMware\VMware Consolidated Backup Framework\vcbmounter" -h vcenter.acme.com -u Adminaccount -p adminspassword -U v:\mnt\%1&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;I also created a bacth program to do image level backups - use the same unmount program
&lt;ul&gt;
&lt;li&gt;imount.bat
&lt;ul&gt;
&lt;li&gt;"C:\Program Files\VMware\VMware Consolidated Backup Framework\vcbmounter" -h vcenter.acme.com -u Adminaccount -p adminspassword -a name:%1 -r v:\mnt\%1 -t fullvm -m nbd&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;now we're ready to go to the green screen&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Create a CL on the green screen, if I've lost you already, please PM me and we can talk, or go to your application group.&lt;br /&gt;
&lt;p /&gt;
I called mine vmbackup&lt;br /&gt;
&lt;p /&gt;
The VMNAME is the name of the virtual machine on the esx host and it is case sensitive.  The NWSD, is the name of the integrated server.&lt;br /&gt;
&lt;p /&gt;
/**MOUNT VMNAME TO THE VCB PROXY SERVER*******************************/&lt;br /&gt;
&lt;p /&gt;
SBMNWSCMD  CMD('"C:\VCB\MOUNT VMNAME"') SERVER(NWSD)&lt;br /&gt;
&lt;p /&gt;
on the vcb proxy server, go to v:\mnt and you will see a folder with the same name as your Virtual Machine.  Open it, you will see the folder letters, keep going, and you see the drive letters.  Now just figure out what you want to save, and put that into the &lt;b&gt;&lt;i&gt;path&lt;/i&gt;&lt;/b&gt; you see below.&lt;br /&gt;
&lt;p /&gt;
/**SAVE THE FILES YOU WANT TO SAVE***********************************/&lt;br /&gt;
         SAV        DEV('/qsys.lib/TAP02.DEVD') +                     &lt;br /&gt;
                      OBJ(('/qntc/nlcvcb/mnt/VMNAME/letters/*&lt;i&gt;path&lt;/i&gt;*')) ENDOPT(*LEAVE)                        &lt;br /&gt;
&lt;p /&gt;
/**UNMOUNT VMNAME FROM THE   PROXY SERVER*****************************/&lt;br /&gt;
         SBMNWSCMD  CMD('"C:\VCB\UNMOUNT VMNAME"') SERVER(NWSD)    &lt;br /&gt;
&lt;p /&gt;
Now just repeat for all the VM's you want to backup.  I like to do an *UNLOAD on my last save, that way I know everything worked ok.&lt;br /&gt;
&lt;p /&gt;
 This is very basic code, you may want to put a lot more logic in your code.  And please test this.  I like tesing mine to a save file.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
Now, if you want to do an image level backup of a VM, it's all the same, but you call the IMOUNT&lt;br /&gt;
&lt;p /&gt;
And for sizing, let me first explain that doing a file level backup doesn't copy files over the vcb proxy.  Doing an image backup does.  The files do get compressed a little, but I always say this, you should make your v:\ drive as big as your largest VM that you are going to backup.  &lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
Please let me know if you have any questions.</description>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">as/400</category>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">bladecenter</category>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">vcb</category>
      <pubDate>Wed, 04 Mar 2009 03:14:51 GMT</pubDate>
      <author>dave@NLC</author>
      <guid>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/2009/03/03/vmware-consolidated-backup-on-system-i-howto</guid>
      <dc:date>2009-03-04T03:14:51Z</dc:date>
      <clearspace:dateToText>8 months, 1 week ago</clearspace:dateToText>
      <wfw:comment>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/comment/vmware-consolidated-backup-on-system-i-howto</wfw:comment>
      <wfw:commentRss>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/feeds/comments?blogPostID=2671</wfw:commentRss>
    </item>
    <item>
      <title>VCB Update</title>
      <link>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/2008/12/31/vcb-update</link>
      <description>&lt;br /&gt;
So I have the VCB working, but not the way I had hoped.  Right now I am using the LAN version, not the SAN version.  I have opened up a case with IBM Tech Support, but this is a bad week if you need tech support!  All the good people are on vacation &lt;img class="jive-emoticon" border="0" src="http://communities.vmware.com/images/emoticons/happy.gif" alt=":)" /&gt;  &lt;br /&gt;
&lt;p /&gt;
So I wrote a batch file on my VCB Server, well 2 of them actually, mount.bat &amp;#38; unmount.bat&lt;br /&gt;
&lt;p /&gt;
Created my c:\mnt directory, shared it, added the member to that file in QUSRSYS that I can never remember the name of....QAZ........ something like that.....&lt;br /&gt;
&lt;p /&gt;
Then I wrote a CL on the System i, used sbmnwscmd to call the mount, saved the files I wanted through /QNTC and then called the unmount. Lather, rinse, repeat.....until all my vm's are backed up.&lt;br /&gt;
&lt;p /&gt;
Worked great!  Now when I get the SAN part working, I'll post again.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
Oh, on a personal note:  I am making the switch to Ubuntu, I have the Notes 8.5 Beta 2 running, in my VM, and as soon as I get all the kinks worked out I'm using Ubuntu as my main OS, and will run Windows as the VM, for only when I need it.  I might start another Blog on Ubuntu.  Vmware really needs to get the vi client for linux working!!!!!&lt;br /&gt;
&lt;p /&gt;
Some may think it's sad that this is how I am spending my New Years Eve, but with a 3 year old, 20 month, and 7 week old at home, and a bruised knee that has me gimping around, I think I'm doing pretty good &lt;img class="jive-emoticon" border="0" src="http://communities.vmware.com/images/emoticons/grin.gif" alt=":D" /&gt; &lt;br /&gt;
&lt;p /&gt;
HAPPY NEW YEAR!!!!</description>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">vcb</category>
      <pubDate>Thu, 01 Jan 2009 03:22:31 GMT</pubDate>
      <author>dave@NLC</author>
      <guid>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/2008/12/31/vcb-update</guid>
      <dc:date>2009-01-01T03:22:31Z</dc:date>
      <clearspace:dateToText>10 months, 1 week ago</clearspace:dateToText>
      <wfw:comment>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/comment/vcb-update</wfw:comment>
      <wfw:commentRss>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/feeds/comments?blogPostID=2403</wfw:commentRss>
    </item>
    <item>
      <title>System i and VCB</title>
      <link>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/2008/12/21/system-i-and-vcb</link>
      <description>Anyone who knows me knows I get a little excited about new technology.  So when I heard about all the great enhancements that v6r1 was bringing to the table, I jumped on it.  I was excited about the obvious things, vMotion was supported.  I got everything up and running, it works great, but how could I use the system i to back it all up.  Well a couple of months have gone by, and I finally got around to reading the redbook!  VCB works!  And it's easy!&lt;br /&gt;
&lt;br /&gt;
Before I get into VCB let me quickly tell you what I have learned.  You should have your vCenter Server be an integrated Windows Server, this way you can shut down the VM's from the System i command line.  If anyone needs to know how just ask.  Have another Server, not integrated, that's running ESXi or something.  There you should have another DC running, with DNS, DHCP, Directory Services, etc.  That way if you need to bring the System i partition down, you still have something of an infrastructure, and you don't really need to back it up.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Now for VCB you need another Physical integrated server, as for setting it up, read the redbook, they did a great job. &lt;a class="jive-link-external" href="http://www.redbooks.ibm.com/redpieces/pdfs/sg247408.pdf"&gt;http://www.redbooks.ibm.com/redpieces/pdfs/sg247408.pdf&lt;/a&gt;&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
I learned another nice little trick through this redbook.  To expand the C:\ drive of a VM, make it larger, link it up to another VM, then use disk part to extend it.  Well guess what, you can do that with an integrated windows server too!  Vary it off, make the Storage space larger, link it up to another server, extend it, then link it back to the original.  It works great!!!!!&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
I'm going to get VCB up and running A.S.A.P., which will probably be after the new year, but as soon as I get it working I will let you know how it works.</description>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">vcb</category>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">as/400</category>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">system_i</category>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">esxi</category>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">vi3</category>
      <category domain="http://communities.vmware.com/blogs/ESX-on-IBM-System-i/tags">i5</category>
      <pubDate>Sun, 21 Dec 2008 16:21:01 GMT</pubDate>
      <author>dave@NLC</author>
      <guid>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/2008/12/21/system-i-and-vcb</guid>
      <dc:date>2008-12-21T16:21:01Z</dc:date>
      <clearspace:dateToText>10 months, 3 weeks ago</clearspace:dateToText>
      <wfw:comment>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/comment/system-i-and-vcb</wfw:comment>
      <wfw:commentRss>http://communities.vmware.com/blogs/ESX-on-IBM-System-i/feeds/comments?blogPostID=2376</wfw:commentRss>
    </item>
  </channel>
</rss>

