<?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>Feed for content matching tag 'virtual_rdm'</title>
    <link>http://communities.vmware.com/index.jspa</link>
    <description>List of items matching the tag 'virtual_rdm'</description>
    <language>en</language>
    <pubDate>Tue, 16 Mar 2010 05:59:01 GMT</pubDate>
    <generator>Clearspace 1.10.12 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2010-03-16T05:59:01Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>findVMsWithRDMs.pl</title>
      <link>http://communities.vmware.com/docs/DOC-11135</link>
      <description>This script locates VMs with RDMs (Virtual and Physical) and provides a list of the VM name, device name, filename and compatibility mode. The script can be pointed to either an individual ESX(i) or vCenter server.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Requirements:&lt;/b&gt;&lt;br /&gt;
ESX(i) 3.5 or 4.0 or vCenter 2.5 or 4.0&lt;br /&gt;
vSphere SDK for Perl or VI Perl Toolkit or vMA 4.0 or VIMA 1.0&lt;br /&gt;
VMs w/RDMs&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Sample Execution:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Executing against a vCenter server:&lt;br /&gt;
&lt;pre class="jive-pre"&gt;&lt;code class="jive-code jive-plain"&gt;[vi-admin@scofield ~]$ ./findVMsWithRDMs.pl --server ucsb-resnet-vcenter --username primp
Enter password:

iscsiBridge.12162008
        DeviceName: vmhba1:0:211:0
        FileName: [http://dlgCore-FC-LUN203.VMstorage3|http://dlgCore-FC-LUN203.VMstorage3] iscsiBridge.12162008/iscsiBridge.12162008_2.vmdk
        CompatMode: physicalMode

&lt;/code&gt;&lt;/pre&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=1">rdm</category>
      <category domain="http://communities.vmware.com/tags?communityID=1">find_rdm</category>
      <category domain="http://communities.vmware.com/tags?communityID=1">physical_rdm</category>
      <category domain="http://communities.vmware.com/tags?communityID=1">virtual_rdm</category>
      <pubDate>Tue, 03 Nov 2009 05:56:04 GMT</pubDate>
      <author>lamw</author>
      <guid>http://communities.vmware.com/docs/DOC-11135</guid>
      <dc:date>2009-11-03T05:56:04Z</dc:date>
      <clearspace:dateToText>4 months, 1 week ago</clearspace:dateToText>
    </item>
    <item>
      <title>rdmManagmement.pl</title>
      <link>http://communities.vmware.com/docs/DOC-10974</link>
      <description>This scripts allows you to create and add either physical or virtual RDM to a VM and also removing and deleting pRDM/vRDM to a VM. You must connect directly to the ESX(i) host that is housing the VM in which the RDM is to be added. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Requirements:&lt;/b&gt;&lt;br /&gt;
ESX(i) 3.5/4.0&lt;br /&gt;
vSphere SDK for Perl or vMA&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Sample Execution:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Querying for available LUNS to be used as an RDM ( &lt;b&gt;operation:&lt;/b&gt; query):&lt;br /&gt;
&lt;pre class="jive-pre"&gt;&lt;code class="jive-code jive-plain"&gt;[vi-admin@scofield ~]$ ./rdmManagmement.pl --server esx40-1.primp-industries.com --username root --vmname rdmVM --operation query
Enter password:
Device Name: /vmfs/devices/disks/eui.caa68a778fc27982
Capacity: 30.00 GB

Device Name: /vmfs/devices/disks/eui.1f79d354801b3936
Capacity: 1000.00 MB

Device Name: /vmfs/devices/disks/eui.8f713e8e3c0a58d2
Capacity: 1.95 GB

Device Name: /vmfs/devices/disks/eui.c028c79e0ee07daa
Capacity: 28.00 GB

&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Let's create an physical RDM using &lt;b&gt;1.95gb&lt;/b&gt; LUN ( &lt;b&gt;operation:&lt;/b&gt; add ):&lt;br /&gt;
&lt;pre class="jive-pre"&gt;&lt;code class="jive-code jive-plain"&gt;[vi-admin@scofield ~]$ ./rdmManagmement.pl --server esx40-1.primp-industries.com --username root --vmname rdmVM --operation add --device /vmfs/devices/disks/eui.8f713e8e3c0a58d2 --compatmode physical --filename databaseRDM.vmdk
Enter password:
Creating and adding &amp;quot;physicalMode&amp;quot; RDM: &amp;quot;databaseRDM.vmdk&amp;quot; to rdmVM ...
        Successfully added RDM to VM!

&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Let's remove and delete the RDM from the VM ( &lt;b&gt;operation:&lt;/b&gt; destroy ):&lt;br /&gt;
&lt;pre class="jive-pre"&gt;&lt;code class="jive-code jive-plain"&gt;[vi-admin@scofield ~]$ ./rdmManagmement.pl --server esx40-1.primp-industries.com --username root --vmname rdmVM --operation destroy --filename databaseRDM.vmdk
Enter password:
Destroying RDM: &amp;quot;databaseRDM.vmdk&amp;quot; to rdmVM ...
        Successfully destroyed RDM to VM!

&lt;/code&gt;&lt;/pre&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=1">rdm</category>
      <category domain="http://communities.vmware.com/tags?communityID=1">physical_rdm</category>
      <category domain="http://communities.vmware.com/tags?communityID=1">virtual_rdm</category>
      <pubDate>Thu, 22 Oct 2009 03:50:03 GMT</pubDate>
      <author>lamw</author>
      <guid>http://communities.vmware.com/docs/DOC-10974</guid>
      <dc:date>2009-10-22T03:50:03Z</dc:date>
      <clearspace:dateToText>4 months, 3 weeks ago</clearspace:dateToText>
    </item>
  </channel>
</rss>

