<?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: Change configuration in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340846#M702115</link>
    <description>I don't have online JFS, melvyn burnard coul'd you tell me what's the command's does to system and the risks for the system?</description>
    <pubDate>Mon, 26 Jul 2004 08:48:56 GMT</pubDate>
    <dc:creator>uadm26</dc:creator>
    <dc:date>2004-07-26T08:48:56Z</dc:date>
    <item>
      <title>Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340841#M702110</link>
      <description>Hi,&lt;BR /&gt;I need to increase the space to a logical volume that is mounted by a package of cluster. /dev/vgshare/lvol2. But it's running an application that uses it filesystem mounted in the logical volume. And if i stop the package i lost the commmunication to the configuration of vgshare and lvol2.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 26 Jul 2004 06:11:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340841#M702110</guid>
      <dc:creator>uadm26</dc:creator>
      <dc:date>2004-07-26T06:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340842#M702111</link>
      <description>You need OnlineJFS which allows you to extend the space on the fly, without unmounting it first.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jul 2004 06:53:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340842#M702111</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2004-07-26T06:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340843#M702112</link>
      <description>Hi,&lt;BR /&gt;Looks like you don't have root access to your System... Let us know more details about system and your System Priviledges&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jul 2004 07:04:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340843#M702112</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-07-26T07:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340844#M702113</link>
      <description>do a cmhaltpkg &lt;PKGNAME&gt; to stop the package,&lt;BR /&gt;then vgchange -a e vgname&lt;BR /&gt;This allows you to work on the logical volume to extend it, and then the file system.&lt;BR /&gt;When the work has been done, vgchange -a n vgname, and restart the package.&lt;BR /&gt;&lt;/PKGNAME&gt;</description>
      <pubDate>Mon, 26 Jul 2004 07:06:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340844#M702113</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2004-07-26T07:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340845#M702114</link>
      <description>Do you have OnlineJFS?&lt;BR /&gt;&lt;BR /&gt;swlist -v -l fileset |grep OnlineJFS&lt;BR /&gt;&lt;BR /&gt;SHould see something like:&lt;BR /&gt;tag                    OnlineJFS&lt;BR /&gt;software_spec          OnlineJFS,l=/,r=B.11.11,a=HP-UX_B.11.11_32/64,v=HP&lt;BR /&gt;control_directory      OnlineJFS&lt;BR /&gt;Product Name                              OnlineJFS&lt;BR /&gt;        The OnlineJFS product is a superset of the standard VxFS File System.&lt;BR /&gt;  OnlineJFS.VXFS-ADV-RUN&lt;BR /&gt;software_spec          OnlineJFS.VXFS-ADV-RUN,l=/,r=B.11.11,a=HP-UX_B.11.11_32/64,v=HP,fr=B.11.11,fa=HP-UX_B.11.11_32/64&lt;BR /&gt;Product Name                            OnlineJFS&lt;BR /&gt;ancestor               OnlineJFS.VXFS-ADV-RUN&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If yes, then, to increase to say 8GB:&lt;BR /&gt;&lt;BR /&gt;lvextend -L 8192 /dev/vgshare/lvol2&lt;BR /&gt;fsadm -b 8192M /mountpoint&lt;BR /&gt;&lt;BR /&gt;If no OnlineJFS:&lt;BR /&gt;&lt;BR /&gt;Stop package&lt;BR /&gt;vgchange -c n /dev/vgshare&lt;BR /&gt;vgchange -a y /dev/vgshare&lt;BR /&gt;&lt;BR /&gt;lvextend -L 8192 /dev/vgshare/lvol2&lt;BR /&gt;extendfs -F vxfs /dev/vgshare/lvol2&lt;BR /&gt;vgchange -a n /dev/vgshare&lt;BR /&gt;vgchange -c y /dev/vgshare&lt;BR /&gt;&lt;BR /&gt;start package&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jul 2004 07:55:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340845#M702114</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-07-26T07:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340846#M702115</link>
      <description>I don't have online JFS, melvyn burnard coul'd you tell me what's the command's does to system and the risks for the system?</description>
      <pubDate>Mon, 26 Jul 2004 08:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340846#M702115</guid>
      <dc:creator>uadm26</dc:creator>
      <dc:date>2004-07-26T08:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340847#M702116</link>
      <description>As Melvyn said, with the package halted, but the node still running cmcld, you will be able to activate the volume group in exclusive mode:&lt;BR /&gt;# vgchange -a e &lt;VGNAME&gt;&lt;BR /&gt;This will not harm any files or perturb the system in any way.&lt;BR /&gt;You will then have access to the logical volumes in the file system.&lt;BR /&gt;To grow a file system that does not have ONLINE JFS available, use these steps:&lt;BR /&gt;# lvextend -L &lt;SIZE in="" mb=""&gt; /dev/vgshare/lvol2&lt;BR /&gt;(Insure -L is larger than it current is!)&lt;BR /&gt;&lt;BR /&gt;After the size of the logical volume has been increased, grow the file system within it:&lt;BR /&gt;# extendfs -v /dev/vgshare/rlvol2&lt;BR /&gt;&lt;BR /&gt;Once completed, mount the file system and use 'bdf' to verify your change.&lt;BR /&gt;&lt;BR /&gt;Next, deactivate the VG:&lt;BR /&gt;# vgchange -a n vgshare&lt;BR /&gt;.. .and start the package.&lt;BR /&gt;&lt;BR /&gt;-StephenD.&lt;/SIZE&gt;&lt;/VGNAME&gt;</description>
      <pubDate>Tue, 27 Jul 2004 07:42:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340847#M702116</guid>
      <dc:creator>Stephen Doud</dc:creator>
      <dc:date>2004-07-27T07:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340848#M702117</link>
      <description>And i don'nt need to do the vgexport to make a backup of the VG structure?</description>
      <pubDate>Tue, 27 Jul 2004 08:14:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340848#M702117</guid>
      <dc:creator>uadm26</dc:creator>
      <dc:date>2004-07-27T08:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340849#M702118</link>
      <description>vgexport does not backup LVM structures!&lt;BR /&gt;&lt;BR /&gt;vgcfgbackup does - but that is done automatically with every LVM command, at least on the node where the command is executed.  I recommend that you vgcfgbackup vgshare (all shared VGs) on the other node as well.&lt;BR /&gt;&lt;BR /&gt;-sd-</description>
      <pubDate>Tue, 27 Jul 2004 11:42:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/change-configuration/m-p/3340849#M702118</guid>
      <dc:creator>Stephen Doud</dc:creator>
      <dc:date>2004-07-27T11:42:18Z</dc:date>
    </item>
  </channel>
</rss>

