<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Xen Multipath Virtualization in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442903#M61548</link>
    <description>Here is an URL &lt;A href="http://communities.vmware.com/message/107057" target="_blank"&gt;http://communities.vmware.com/message/107057&lt;/A&gt; which describes how "multipath" was set up on VMware and here is a snip from that URL of how it was set up in the .vmx file:&lt;BR /&gt;&lt;BR /&gt;# INTERNAL SCSI HBA&lt;BR /&gt;scsi0.present = "TRUE"&lt;BR /&gt;scsi0.virtualDev = "lsilogic"&lt;BR /&gt;&lt;BR /&gt;# HBAs attached to "shared disks"&lt;BR /&gt;scsi1.present = "TRUE"&lt;BR /&gt;scsi1.virtualDev = "lsilogic"&lt;BR /&gt;scsi1.sharedBus = "virtual"&lt;BR /&gt;scsi2.present = "TRUE"&lt;BR /&gt;scsi2.virtualDev = "lsilogic"&lt;BR /&gt;scsi2.sharedBus = "virtual"&lt;BR /&gt;&lt;BR /&gt;# shared bus setting&lt;BR /&gt;diskLib.dataCacheMaxSize = "0"&lt;BR /&gt;diskLib.dataCacheMaxReadAheadSize = "0"&lt;BR /&gt;diskLib.dataCacheMinReadAheadSize = "0"&lt;BR /&gt;diskLib.dataCachePageSize = "4096"&lt;BR /&gt;diskLib.maxUnsyncedWrites = "0"&lt;BR /&gt;disk.locking=FALSE&lt;BR /&gt;&lt;BR /&gt;# internal disk 1&lt;BR /&gt;scsi0:0.present = "TRUE"&lt;BR /&gt;scsi0:0.fileName = "dsk0-000001.vmdk"&lt;BR /&gt;scsi0:0.redo = ""&lt;BR /&gt;# internal disk 2&lt;BR /&gt;scsi0:1.present = "TRUE"&lt;BR /&gt;scsi0:1.fileName = "dsk1-000001.vmdk"&lt;BR /&gt;scsi0:1.redo = ""&lt;BR /&gt;&lt;BR /&gt;# shared disk 1, via path1&lt;BR /&gt;scsi1:0.present = "TRUE"&lt;BR /&gt;scsi1:0.fileName = "D:\share\shared1.vmdk"&lt;BR /&gt;scsi1:0.redo = ""&lt;BR /&gt;scsi1:0.mode = "independent-persistent"&lt;BR /&gt;scsi1:0.deviceType = "disk"&lt;BR /&gt;# shared disk 1, via path2&lt;BR /&gt;scsi2:0.present = "TRUE"&lt;BR /&gt;scsi2:0.fileName = "D:\share\shared1.vmdk"&lt;BR /&gt;scsi2:0.redo = ""&lt;BR /&gt;scsi2:0.mode = "independent-persistent"&lt;BR /&gt;scsi2:0.deviceType = "disk"</description>
    <pubDate>Fri, 19 Jun 2009 14:01:46 GMT</pubDate>
    <dc:creator>Gilbert Standen_1</dc:creator>
    <dc:date>2009-06-19T14:01:46Z</dc:date>
    <item>
      <title>Xen Multipath Virtualization</title>
      <link>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442899#M61544</link>
      <description>Hi, I recently did a 64-bit Oracle 2-node RAC production deployment on RHEL 5.3 Linux for an HP consulting client (I am an HP consultant).  I prototyped the system on a laptop for the client mostly to work through any software issues on the OS or Oracle software before doing the actual install on the production blades.  The prototype was on CentOS 5.3 running the Xen kernel (2 Centos 5.3 DomU's) on intel dual core T3400 EM64T running 4Gb memory.  &lt;BR /&gt;&lt;BR /&gt;My question is this:  Underneath the Oracle installation (which I did as Oracle DBA) we enter the world of how the multipathing can be designed, about which as an Oracle DBA I know not so much as I do about Oracle.&lt;BR /&gt;&lt;BR /&gt;First, we did the devices using (deprecated) raw devices by making use of the various files in the /etc/udev/rules.d directory since there is no more "service rawdevices start" etc. We could have used dm-multipath though, and I'd like to do some prototyping of that on my Xen VM prototypes of our system using dm-multipath instead of rawdevices approach.&lt;BR /&gt;&lt;BR /&gt;So what I am wondering about is this:  I have done my shared disk on the domU's for rac this way: they are files on disk of this presentation type to the domU's:&lt;BR /&gt;&lt;BR /&gt;disk = [ "tap:aio:/vtdev/rac1.img,xvda,w", "tap:aio:/vtdev/hdb,xvdb,!", "tap:aio:/vtdev/hdc,xvdc,!", "tap:aio:/vtdev/hdd,xvdd,!", "tap:aio:/vtdev/hde,xvde,!" ]&lt;BR /&gt;&lt;BR /&gt;The disks with "!" as the last entry are the shared disks (the domU's access these as "shared raw").  This works fine for the RAC prototype.&lt;BR /&gt;&lt;BR /&gt;Ok finally I think we come to what I am wondering about.  First of all, what in fact is the "path" to these "raw disks" ?  I'm trying to get a hand on the the rockledge of "multipath" so I'd like to start by understanding what is my "path" to these simple "shared disks".  I am guessing these are "singlepath" devices and are not multipath. How, in the language of linux, can we describe, view the "path" to these simple "devices" (e.g. /dev/xvdd, /dev/xvde, etc.).  Are there linux commands which can "show" me how we describe the "path" to these devices?&lt;BR /&gt;&lt;BR /&gt;My next question is, can I somehow simulate with what I already have, "multipath" devices.  Can I build "multiple paths" to these "shared files".&lt;BR /&gt;&lt;BR /&gt;Also, have you any suggestions on how to create a "replica" of a "SAN" or any links you could point me to so that I could build under these RAC nodes "virtual" HBA's, SAN's, controllers, etc. that would allow us to emulate our actual physical hardware.&lt;BR /&gt;&lt;BR /&gt;Currently ( I discussed this with the Linux Administrator) we are using IBM "RDAC" for our "multipath" and I verified using lsmod and "service dm_multipath status" that although dm_multipath rpm's are installed, the service is not on and all boot levels (chkconfig) have dm-multipath off so we are definitely not using dm for anything now.&lt;BR /&gt;&lt;BR /&gt;I apologize for this kind of vague message.  I'm just looking for general pointers where I can go to learn more about this and start to move in the direction of building a more authentic "virtual" structure underneath the domU's than just these files which are emulating raw devices.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance,&lt;BR /&gt;Gil Standen&lt;BR /&gt;HP CWO Consultant&lt;BR /&gt;NYC</description>
      <pubDate>Fri, 19 Jun 2009 01:01:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442899#M61544</guid>
      <dc:creator>Gilbert Standen_1</dc:creator>
      <dc:date>2009-06-19T01:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Xen Multipath Virtualization</title>
      <link>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442900#M61545</link>
      <description>Well doing some additional dogged research turned up this paper from IBM which seems to really give a pretty darn good roadmap to do some of the things I am asking about:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.ibm.com/developerworks/linux/library/l-multipath-xen/?ca=dgr-lnxw16RedHatLinuxXenp&amp;amp;S_TACT=105AGX59&amp;amp;S_CMP=GR" target="_blank"&gt;http://www.ibm.com/developerworks/linux/library/l-multipath-xen/?ca=dgr-lnxw16RedHatLinuxXenp&amp;amp;S_TACT=105AGX59&amp;amp;S_CMP=GR&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thoughts?  The only thing remaining really given this great roadmap at the above URL is to create a "simulated" IBM DS4800 in the sense of just simulating the existence of the 3 LUNS.  Any thoughts on that?  Thanks!</description>
      <pubDate>Fri, 19 Jun 2009 02:41:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442900#M61545</guid>
      <dc:creator>Gilbert Standen_1</dc:creator>
      <dc:date>2009-06-19T02:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Xen Multipath Virtualization</title>
      <link>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442901#M61546</link>
      <description>HI, with regards to replica's,etc. I guess this depends somewhat on what your SAN/disk infrastructure is built up of. In my environment we have used DRBD when we have needed to create DR replicas that are either on SAN, but we need copying to local disk. &lt;BR /&gt;&lt;BR /&gt;In other scenarios we have used SSSU to create snapclones/snapshots of datasets. Instead of using dm-multipath, we have used Qlogic FC HBAs with their built-in failover mode, and setup multiple paths to the disks at the switch/SAN level. - This has worked really well for us, and has also given us the added benefit of being able to use Continous Access to replicate data between 'live' and DR site with no service interruptions.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;Matt&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Jun 2009 06:05:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442901#M61546</guid>
      <dc:creator>Matt Palmer_2</dc:creator>
      <dc:date>2009-06-19T06:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Xen Multipath Virtualization</title>
      <link>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442902#M61547</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I've looked over the link you provided, and the tests that the guy does are basically the same ones I created for the environment I have here. The only difference in my configuration is that I'm running SLES 10 SP2 not redhat. I found a link on google that details an issue with using the failover mode on a Qlogic FC HBA in conjuntion with dm-multipath. What I saw happening was that the failover only appeared to work one way, and then once the path was available again the filesystem remained locked as readonly and required a reboot to cure this. Not sure if this problem is particular to just SLES10/Qlogic/dm-multipath, but thought it may be worth a mention.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;Matt&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Jun 2009 06:23:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442902#M61547</guid>
      <dc:creator>Matt Palmer_2</dc:creator>
      <dc:date>2009-06-19T06:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Xen Multipath Virtualization</title>
      <link>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442903#M61548</link>
      <description>Here is an URL &lt;A href="http://communities.vmware.com/message/107057" target="_blank"&gt;http://communities.vmware.com/message/107057&lt;/A&gt; which describes how "multipath" was set up on VMware and here is a snip from that URL of how it was set up in the .vmx file:&lt;BR /&gt;&lt;BR /&gt;# INTERNAL SCSI HBA&lt;BR /&gt;scsi0.present = "TRUE"&lt;BR /&gt;scsi0.virtualDev = "lsilogic"&lt;BR /&gt;&lt;BR /&gt;# HBAs attached to "shared disks"&lt;BR /&gt;scsi1.present = "TRUE"&lt;BR /&gt;scsi1.virtualDev = "lsilogic"&lt;BR /&gt;scsi1.sharedBus = "virtual"&lt;BR /&gt;scsi2.present = "TRUE"&lt;BR /&gt;scsi2.virtualDev = "lsilogic"&lt;BR /&gt;scsi2.sharedBus = "virtual"&lt;BR /&gt;&lt;BR /&gt;# shared bus setting&lt;BR /&gt;diskLib.dataCacheMaxSize = "0"&lt;BR /&gt;diskLib.dataCacheMaxReadAheadSize = "0"&lt;BR /&gt;diskLib.dataCacheMinReadAheadSize = "0"&lt;BR /&gt;diskLib.dataCachePageSize = "4096"&lt;BR /&gt;diskLib.maxUnsyncedWrites = "0"&lt;BR /&gt;disk.locking=FALSE&lt;BR /&gt;&lt;BR /&gt;# internal disk 1&lt;BR /&gt;scsi0:0.present = "TRUE"&lt;BR /&gt;scsi0:0.fileName = "dsk0-000001.vmdk"&lt;BR /&gt;scsi0:0.redo = ""&lt;BR /&gt;# internal disk 2&lt;BR /&gt;scsi0:1.present = "TRUE"&lt;BR /&gt;scsi0:1.fileName = "dsk1-000001.vmdk"&lt;BR /&gt;scsi0:1.redo = ""&lt;BR /&gt;&lt;BR /&gt;# shared disk 1, via path1&lt;BR /&gt;scsi1:0.present = "TRUE"&lt;BR /&gt;scsi1:0.fileName = "D:\share\shared1.vmdk"&lt;BR /&gt;scsi1:0.redo = ""&lt;BR /&gt;scsi1:0.mode = "independent-persistent"&lt;BR /&gt;scsi1:0.deviceType = "disk"&lt;BR /&gt;# shared disk 1, via path2&lt;BR /&gt;scsi2:0.present = "TRUE"&lt;BR /&gt;scsi2:0.fileName = "D:\share\shared1.vmdk"&lt;BR /&gt;scsi2:0.redo = ""&lt;BR /&gt;scsi2:0.mode = "independent-persistent"&lt;BR /&gt;scsi2:0.deviceType = "disk"</description>
      <pubDate>Fri, 19 Jun 2009 14:01:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442903#M61548</guid>
      <dc:creator>Gilbert Standen_1</dc:creator>
      <dc:date>2009-06-19T14:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Xen Multipath Virtualization</title>
      <link>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442904#M61549</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;this approach looks fine from the guest point of view. My only question (not being from an oracle house) is does it only need to be the raw devices that you need have multipathing setup on? are there filesystems that need to have a diverse route set to them?&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;Matt&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:55:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/xen-multipath-virtualization/m-p/4442904#M61549</guid>
      <dc:creator>Matt Palmer_2</dc:creator>
      <dc:date>2009-06-22T06:55:33Z</dc:date>
    </item>
  </channel>
</rss>

