<?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: Adding disk.. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311110#M339422</link>
    <description>Details please&lt;BR /&gt;&lt;BR /&gt;Which OS?&lt;BR /&gt;Clustered/Non-Clustered?&lt;BR /&gt;Which VG?&lt;BR /&gt;Local Disk or SAN disk?&lt;BR /&gt;&lt;BR /&gt;Also have searched the Forum for answers?  I'm certain this topic has been covered previously.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
    <pubDate>Fri, 21 Nov 2008 20:36:52 GMT</pubDate>
    <dc:creator>OFC_EDM</dc:creator>
    <dc:date>2008-11-21T20:36:52Z</dc:date>
    <item>
      <title>Adding disk..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311109#M339421</link>
      <description>How to add a disk to already existing volume group..</description>
      <pubDate>Fri, 21 Nov 2008 20:15:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311109#M339421</guid>
      <dc:creator>Jayraj</dc:creator>
      <dc:date>2008-11-21T20:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311110#M339422</link>
      <description>Details please&lt;BR /&gt;&lt;BR /&gt;Which OS?&lt;BR /&gt;Clustered/Non-Clustered?&lt;BR /&gt;Which VG?&lt;BR /&gt;Local Disk or SAN disk?&lt;BR /&gt;&lt;BR /&gt;Also have searched the Forum for answers?  I'm certain this topic has been covered previously.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Fri, 21 Nov 2008 20:36:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311110#M339422</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-11-21T20:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311111#M339423</link>
      <description>use vgextend to add new disk to existing VG.&lt;BR /&gt;&lt;BR /&gt;check for the vgdisplay, to know the  number of PV used.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;kamal.</description>
      <pubDate>Sat, 22 Nov 2008 00:17:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311111#M339423</guid>
      <dc:creator>Analyst</dc:creator>
      <dc:date>2008-11-22T00:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311112#M339424</link>
      <description>How to add a disk to already existing volume group.. .?&lt;BR /&gt;&lt;BR /&gt;Question:- add disk to already existing VG &lt;BR /&gt;&lt;BR /&gt;No Cluster aware &lt;BR /&gt;&lt;BR /&gt;pvcreate /dev/rdsk/cxtxdx&lt;BR /&gt;vgextend /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;is it Cluster aware Volume group.?&lt;BR /&gt;&lt;BR /&gt;if Cluster aware follow as per below&lt;BR /&gt;&lt;BR /&gt;1.  pvcreate /dev/rdsk/cxtxdx&lt;BR /&gt;&lt;BR /&gt;2. vgextend /dev/vgXX/ /dev/dsk/cxtxdx&lt;BR /&gt;&lt;BR /&gt;3. Activate the VG in exclusive mode in primary node; deactivating in the other&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgchange -a n /dev/vgxx (on secondary node)&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgchange -a e /dev/vgxx (on primary)&lt;BR /&gt;Where /dev/vgxx is the VG name&lt;BR /&gt;&lt;BR /&gt;4. Extend the VG if necessary&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgextend -g vgxxpn /dev/vgxx pv1 pv2 .... pvn&lt;BR /&gt;Where vgxxpn is the PVG and pv1....pvn is the disk (/dev/dsk/c?t?d?) Make sure you already performed the initial steps in extending VG&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;5. Create a map file&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgexport -pvs -m &lt;MAPFILE&gt; /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;6. Copy the mapfile to the other node&lt;BR /&gt;&lt;BR /&gt;7. Activate in share mode&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgchange -a s /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;On the other node:&lt;BR /&gt;1. Export the VG&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;vgexport /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;2. Recreate the directory&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;mkdir -p /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;3. Recreate the VG group file&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;mknod /dev/vgxx/group c 64 0xMM0000&lt;BR /&gt;where MM is a unique identifier (ex 01 for vg01)&lt;BR /&gt;&lt;BR /&gt;4. Preview the vgimport to check for any possible error&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgimport -pvs -m &lt;MAPFILE&gt; /dev/vgxx&lt;BR /&gt;where mapfile is the one copied from the first node&lt;BR /&gt;&lt;BR /&gt;5. If no error, remove the preview mode&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgimport -vs -m &lt;MAPFILE&gt; /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;6. Activate in share mode&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;vgchange -a s /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Johnson&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/MAPFILE&gt;&lt;/MAPFILE&gt;&lt;/MAPFILE&gt;</description>
      <pubDate>Sat, 22 Nov 2008 00:29:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311112#M339424</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2008-11-22T00:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311113#M339425</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Have a look at chapter-6 of this guide:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/B2355-90950/index.html" target="_blank"&gt;http://www.docs.hp.com/en/B2355-90950/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sat, 22 Nov 2008 00:31:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-disk/m-p/4311113#M339425</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-11-22T00:31:46Z</dc:date>
    </item>
  </channel>
</rss>

