<?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: mirror vg00 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682817#M245722</link>
    <description>Hi (again) Jeffrey:&lt;BR /&gt;&lt;BR /&gt;No, you won't see '/dev/vg00/lvol2' in a 'bdf' output nor should you record it in 'etc/fstab'.  Primary swap is automatically "mounted" at bootup.  In fact, if you put it in 'etc/fstab', the next time a 'mount all' was done you see the kernel "complain".&lt;BR /&gt;&lt;BR /&gt;You *can* see it, however, if you do:&lt;BR /&gt;&lt;BR /&gt;# swapinfo -tam&lt;BR /&gt;&lt;BR /&gt;This shows *all* of your current swap devices along with a line for "memory" if you have pseudoswap enabled (you should, but that's a whole other subject).&lt;BR /&gt;&lt;BR /&gt;If you fail to mirror the first three logical volumes of vg00 in the order (1,2,3) then if you do:&lt;BR /&gt;&lt;BR /&gt;# lvlnboot -v &lt;BR /&gt;&lt;BR /&gt;...to see that all is in order, it will appear that the primary swap space (lvol2) isn't mirrored and you won't be able to correct it!&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Thu, 01 Dec 2005 19:43:10 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2005-12-01T19:43:10Z</dc:date>
    <item>
      <title>mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682811#M245716</link>
      <description>I am in need of help mirroring the drives in vg00 on my rp3440.  I am currently running HP-UX 11.iv2 and when I checked the installed software it shows that mirrorDisk (B2491BA) is installed.  How do I use this to mirror the drives?&lt;BR /&gt;&lt;BR /&gt;Thanks for the help.</description>
      <pubDate>Thu, 01 Dec 2005 18:17:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682811#M245716</guid>
      <dc:creator>Jeffrey F. Goldsmith</dc:creator>
      <dc:date>2005-12-01T18:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682812#M245717</link>
      <description>First, you need to identify the drive you want to use as a mirror.&lt;BR /&gt;&lt;BR /&gt;Now a script like this one should do the trick:&lt;BR /&gt;&lt;BR /&gt;RAW=/dev/rdsk/c1t5d0   # your new mirror&lt;BR /&gt;COOKED=/dev/dsk/c1t5d0 # ditto&lt;BR /&gt;LVOLS="lvol1 lvol2 lvol3 lvol4 lvol5 lvol6 lvol7 lvol8" # match your existing vg00 LVOL's&lt;BR /&gt;&lt;BR /&gt;pvcreate -f -B ${RAW}&lt;BR /&gt;vgextend /dev/vg00 ${COOKED}&lt;BR /&gt;mkboot ${RAW}&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" ${RAW}&lt;BR /&gt;&lt;BR /&gt;for LVOL in ${LVOLS}&lt;BR /&gt;  do&lt;BR /&gt;     echo "Mirroring /dev/vg00/${LVOL}"&lt;BR /&gt;     lvextend -m 1 /dev/vg00/${LVOL}&lt;BR /&gt;  done&lt;BR /&gt;&lt;BR /&gt;lvlnboot -R&lt;BR /&gt;&lt;BR /&gt;You should also run the &lt;BR /&gt;&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" original_boot_disk&lt;BR /&gt;&lt;BR /&gt;command because otherwise you actually make you box less likely to boot unattended because now both disks must be present to boot off the primary.</description>
      <pubDate>Thu, 01 Dec 2005 18:30:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682812#M245717</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-12-01T18:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682813#M245718</link>
      <description>Shalom Jeffery,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;pvcreate -B /dev/rdsk/c1t0d0 #use real disk&lt;BR /&gt;&lt;BR /&gt;mkboot -l /dev/rdsk/c1t0d0&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c1t0d0 # use real disk&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# mkboot -b /usr/sbin/diag/lif/updatediaglif -p ISL -p AUTO -p HPUX -p PAD -p LABEL /dev/rdsk/c?t?d?&lt;BR /&gt;&lt;BR /&gt;If you are running 64-bit OS:&lt;BR /&gt;&lt;BR /&gt;# This section may be different for 11i v2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mkboot -b /usr/sbin/diag/lif/updatediaglif2 -p ISL -p AUTO -p HPUX -p PAD -p LABEL /dev/rdsk/c?t?d?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;vgextend /dev/vg00 /dev/dsk/c1t0d0 # same thing&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c1t0d0&lt;BR /&gt;&lt;BR /&gt;# real disk. repeat for other lvols&lt;BR /&gt;&lt;BR /&gt;lvlnboot -r /dev/vg00/lvol3 # root fs /&lt;BR /&gt;lvlnboot -s /dev/vg00/lvol2 #swap&lt;BR /&gt;lvlnboot -d /dev/vg00/lvol2 #swap/dump&lt;BR /&gt;lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;lvlnboot -R&lt;BR /&gt;lvlnboot -v&lt;BR /&gt;setboot&lt;BR /&gt;setboot -a 52.1.0 # second disk&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 01 Dec 2005 18:34:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682813#M245718</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-12-01T18:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682814#M245719</link>
      <description>Here is my disk drive information.  I have two drives in my server at this location:&lt;BR /&gt;&lt;BR /&gt;/dev/dsk/c2t0d0&lt;BR /&gt;/dev/dsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;After reading both suggestions I tried to do the following and it seemed to work fine. Meaning I didnt get any errors.&lt;BR /&gt;&lt;BR /&gt;Pvcreate â  B /dev/rdsk/c2t1d0&lt;BR /&gt;Mkboot â  l /dev/rdsk/c2t1d0&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c2t1d0&lt;BR /&gt;mkboot -b /usr/sbin/diag/lif/updatediaglif -p ISL -p AUTO -p HPUX -p PAD -p LABEL /dev/rdsk/c2t1d0&lt;BR /&gt;mkboot -b /usr/sbin/diag/lif/updatediaglif2 -p ISL -p AUTO -p HPUX -p PAD -p LABEL /dev/rdsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If my understanding is correct I should be doing the following steps.  If you see any problems with this please let me know.&lt;BR /&gt;&lt;BR /&gt;vgextend /dev/vg00 /dev/dsk/c2t1d0 &lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol5 /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol6 /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/depot /dev/dsk/c2t1d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;lvlnboot -r /dev/vg00/lvol3 &lt;BR /&gt;lvlnboot -s /dev/vg00/lvol2 &lt;BR /&gt;lvlnboot -d /dev/vg00/lvol2 &lt;BR /&gt;lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;lvlnboot â  R&lt;BR /&gt;lvlnboot â  v&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Where do i get the setboot information from?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Thu, 01 Dec 2005 19:09:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682814#M245719</guid>
      <dc:creator>Jeffrey F. Goldsmith</dc:creator>
      <dc:date>2005-12-01T19:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682815#M245720</link>
      <description>Hi Jeffrey:&lt;BR /&gt;&lt;BR /&gt;Your last post suggests an error.  You should mirror your logical volumes at least beginning in this order:&lt;BR /&gt;&lt;BR /&gt;'lvol1', 'lvol2, 'lvol3'&lt;BR /&gt;&lt;BR /&gt;You *do* want to mirror your primary swap space.  After all, you need that to boot and if your primary disk fails, you want the mirrored copy to boot correctly.&lt;BR /&gt;&lt;BR /&gt;With regard to the 'setboot', yes, be sure to set the alternate boot path after you mirror.  Again, you want the secondary disk to automatically bring your server up.&lt;BR /&gt;&lt;BR /&gt;# setboot -a &lt;ALTERNATE boot="" path=""&gt;&lt;BR /&gt;&lt;BR /&gt;See the manpages for more information.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/ALTERNATE&gt;</description>
      <pubDate>Thu, 01 Dec 2005 19:18:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682815#M245720</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-12-01T19:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682816#M245721</link>
      <description>Thanks for the warning.  This is the info i get when i do a bdf.  Dont see an lvol2 listed.  Since this server arrived preloaded do I need to create an lvol2?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;root: /etc/default ==&amp;gt; bdf&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vg00/lvol3     524288  197544  324248   38% /&lt;BR /&gt;/dev/vg00/lvol1     298928   97592  171440   36% /stand&lt;BR /&gt;/dev/vg00/lvol8    4718592  780616 3907264   17% /var&lt;BR /&gt;/dev/vg00/lvol7    3538944 1604424 1919432   46% /usr&lt;BR /&gt;/dev/vg00/lvol4     212992    8616  202848    4% /tmp&lt;BR /&gt;/dev/vg00/depot    2048000   16974 1904094    1% /software&lt;BR /&gt;/dev/vg00/lvol6    2719744 2049512  665008   76% /opt&lt;BR /&gt;/dev/vg00/lvol5      32768   11448   21200   35% /home&lt;BR /&gt;/dev/dsk/c0t0d0      50880   50880       0  100% /cdrom&lt;BR /&gt;root: /etc/default ==&amp;gt;</description>
      <pubDate>Thu, 01 Dec 2005 19:26:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682816#M245721</guid>
      <dc:creator>Jeffrey F. Goldsmith</dc:creator>
      <dc:date>2005-12-01T19:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682817#M245722</link>
      <description>Hi (again) Jeffrey:&lt;BR /&gt;&lt;BR /&gt;No, you won't see '/dev/vg00/lvol2' in a 'bdf' output nor should you record it in 'etc/fstab'.  Primary swap is automatically "mounted" at bootup.  In fact, if you put it in 'etc/fstab', the next time a 'mount all' was done you see the kernel "complain".&lt;BR /&gt;&lt;BR /&gt;You *can* see it, however, if you do:&lt;BR /&gt;&lt;BR /&gt;# swapinfo -tam&lt;BR /&gt;&lt;BR /&gt;This shows *all* of your current swap devices along with a line for "memory" if you have pseudoswap enabled (you should, but that's a whole other subject).&lt;BR /&gt;&lt;BR /&gt;If you fail to mirror the first three logical volumes of vg00 in the order (1,2,3) then if you do:&lt;BR /&gt;&lt;BR /&gt;# lvlnboot -v &lt;BR /&gt;&lt;BR /&gt;...to see that all is in order, it will appear that the primary swap space (lvol2) isn't mirrored and you won't be able to correct it!&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 01 Dec 2005 19:43:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682817#M245722</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-12-01T19:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682818#M245723</link>
      <description>James,&lt;BR /&gt;&lt;BR /&gt;Thanks for the info.  I did everything the way I had it listed above with the one exception of doing an lvextend on lvol2 after lvol1 and before lvol3.  Here is the lvlnboot -v info.&lt;BR /&gt;&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvlnboot -v&lt;BR /&gt;Boot Definitions for Volume Group /dev/vg00:&lt;BR /&gt;Physical Volumes belonging in Root Volume Group:&lt;BR /&gt;        /dev/dsk/c2t0d0 (0/1/1/0.0.0) -- Boot Disk&lt;BR /&gt;        /dev/dsk/c2t1d0 (0/1/1/0.1.0) -- Boot Disk&lt;BR /&gt;Boot: lvol1     on:     /dev/dsk/c2t0d0&lt;BR /&gt;                        /dev/dsk/c2t1d0&lt;BR /&gt;Root: lvol3     on:     /dev/dsk/c2t0d0&lt;BR /&gt;                        /dev/dsk/c2t1d0&lt;BR /&gt;Swap: lvol2     on:     /dev/dsk/c2t0d0&lt;BR /&gt;                        /dev/dsk/c2t1d0&lt;BR /&gt;Dump: lvol2     on:     /dev/dsk/c2t0d0, 0&lt;BR /&gt;&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Does this look correct?  The only thing I havent done is the setboot.  When I do a setboot this is what i get.&lt;BR /&gt;&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; setboot&lt;BR /&gt;Primary bootpath : 0/1/1/0.0.0&lt;BR /&gt;Alternate bootpath : 0/0/2/0.3.0&lt;BR /&gt;&lt;BR /&gt;Autoboot is ON (enabled)&lt;BR /&gt;Autosearch is ON (enabled)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Is this the correct command for setboot?&lt;BR /&gt;&lt;BR /&gt;setboot -a 0/1/1/0.1.0&lt;BR /&gt;&lt;BR /&gt;or is it &lt;BR /&gt;&lt;BR /&gt;setboot -a 01.1.0.1.0&lt;BR /&gt;&lt;BR /&gt;Here is the ioscan -fnC disk info for those two drives.&lt;BR /&gt;&lt;BR /&gt;disk      1  0/1/1/0.0.0    sdisk      CLAIMED     DEVICE       HP 73.4GST373454LC&lt;BR /&gt;                           /dev/dsk/c2t0d0   /dev/rdsk/c2t0d0&lt;BR /&gt;disk      2  0/1/1/0.1.0    sdisk      CLAIMED     DEVICE       HP 73.4GST373454LC&lt;BR /&gt;                           /dev/dsk/c2t1d0   /dev/rdsk/c2t1d0&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2005 20:02:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682818#M245723</guid>
      <dc:creator>Jeffrey F. Goldsmith</dc:creator>
      <dc:date>2005-12-01T20:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682819#M245724</link>
      <description>Hi Jeffrey:&lt;BR /&gt;&lt;BR /&gt;The 'lvlnboot' output looks good (showing both disk for each logical volume), but to be safe, since you say you didn't mirror in the "1,2,3" order, do:&lt;BR /&gt;&lt;BR /&gt;# for N in 1 2 3 4 5 6 7 8&lt;BR /&gt;&amp;gt; do&lt;BR /&gt;&amp;gt; 'vgreduce -m 0 /dev/vg00/lvol${N} /dev/dsk/c2t1d0&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;# vgreduce -m 0 /dev/vg00/depot /dev/dsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;...and then mirror everything back in order.&lt;BR /&gt;&lt;BR /&gt;Your setboot command should look like:&lt;BR /&gt;&lt;BR /&gt;# setboot -a 0/1/1/0.1.0&lt;BR /&gt;&lt;BR /&gt;The best test of your exercise is to boot from the mirrored disk.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 01 Dec 2005 20:21:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682819#M245724</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-12-01T20:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682820#M245725</link>
      <description>James,&lt;BR /&gt;&lt;BR /&gt;I did do the the lvextend for the lvol1 - lvol8 in order.  Earlier I had asked about doing them prior to doing the lvextends. That means that everything should be fine correct?  Here is the listing of the lvextends:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; vgextend /dev/vg00 /dev/dsk/c2t1d0 &lt;BR /&gt;Volume group "/dev/vg00" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol1" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol2" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol3" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol4" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol5 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol5" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol6 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol6" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol7" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;root: /dev/vg00 ==&amp;gt; lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/c2t1d0&lt;BR /&gt;The newly allocated mirrors are now being synchronized. This operation will &lt;BR /&gt;take some time. Please wait ....&lt;BR /&gt;Logical volume "/dev/vg00/lvol8" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;One question I do have with doing this mirroring.  If there are other lvol's on the vg00 primary drive and I dont extend them onto the second/mirror drive can i still do that at a later date?&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Dec 2005 12:11:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682820#M245725</guid>
      <dc:creator>Jeffrey F. Goldsmith</dc:creator>
      <dc:date>2005-12-02T12:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: mirror vg00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682821#M245726</link>
      <description>Hi Jeffrey:&lt;BR /&gt;&lt;BR /&gt;You asked, "If there are other lvol's on the vg00 primary drive and I dont extend them onto the second/mirror drive can i still do that at a later date?".&lt;BR /&gt;&lt;BR /&gt;The answer is "yes.".  All that I was trying to urge is, why wouldn't you want to mirror every logical volume in your vg00 disk?  After all, the goal is high-availability and that means everything possible is ready on a mirror copy when/if you need it!&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 02 Dec 2005 13:10:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-vg00/m-p/3682821#M245726</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-12-02T13:10:21Z</dc:date>
    </item>
  </channel>
</rss>

