<?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: Missing Filesystem after reboot in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509657#M365664</link>
    <description>This is newly added filesystem. The previously filesystems are fine. I checked /etc/mnttab, the newly added filesystem was added after a line - such as servername:(pid1494) /net ignore ro,intr,port=821,map=-hosts,indirect,dev=0000 0 0 1254841786&lt;BR /&gt;&lt;BR /&gt;Should I move it up above this line?&lt;BR /&gt;&lt;BR /&gt;/etc/lvmrc hasn't been changed. it currently has AUTO_VG_ACTIVATE=0. Why did not this happen to other filesystems?</description>
    <pubDate>Wed, 07 Oct 2009 18:20:25 GMT</pubDate>
    <dc:creator>Rick Chen_1</dc:creator>
    <dc:date>2009-10-07T18:20:25Z</dc:date>
    <item>
      <title>Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509652#M365659</link>
      <description>The new filesystem /dev/vgpacet6/lvol1 was added to /etc/fstab. It is not mounted after reboot. No information found in rc.log, syslog.log to identify what exactly happened during reboot.&lt;BR /&gt;- try to mount the filesystem:&lt;BR /&gt;/dev/vgpacet6/lvol1: No such device or address&lt;BR /&gt;- vgdisplay vgpacet6&lt;BR /&gt;vgdisplay: Volume group not activated.&lt;BR /&gt;vgdisplay: Cannot display volume group "vgpacet6".&lt;BR /&gt;-vgchange -a y vgpacet6&lt;BR /&gt;Activated volume group &lt;BR /&gt;Volume group "vgpacet6" has been successfully changed.&lt;BR /&gt;&lt;BR /&gt;Then I can mount this device. &lt;BR /&gt;&lt;BR /&gt;What went wrong with it during reboot? How can I avoid this during next reboot?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 07 Oct 2009 14:43:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509652#M365659</guid>
      <dc:creator>Rick Chen_1</dc:creator>
      <dc:date>2009-10-07T14:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509653#M365660</link>
      <description>It needs to be in /etc/mnttab, not fstab.  Then you need to figure out why it was not activated.  Is this a Service Guard situation?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 07 Oct 2009 14:46:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509653#M365660</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-10-07T14:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509654#M365661</link>
      <description>Check the discussion about /etc/lvmrc in this thread:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=765250" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=765250&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 07 Oct 2009 14:49:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509654#M365661</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-10-07T14:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509655#M365662</link>
      <description>Rick Chen,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;What went wrong with it during reboot? How can I avoid this during next reboot?&lt;BR /&gt;&lt;BR /&gt;- Looks like some one newly created this vg and added filesystem to the system , however didn't do it correctly. And so it didnot come properly in next reboot.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;- To avoid this : (Make sure before reboot):&lt;BR /&gt;1. Make sure the new vg has been added to /etc/lvmrc if AUTO_VGACTIVATE is mentioned 0 in /etc/lvmrc . &lt;BR /&gt;&lt;BR /&gt;[ AUTO_VG_ACTIVATE=1 in /etc/lvmrc means automatic VG activation of all vg during reboot ]&lt;BR /&gt;&lt;BR /&gt;2. Make sure the filesystem is added in /etc/fstab &lt;BR /&gt;&lt;BR /&gt;3. Also it would be a good idea to take an output of bdf &amp;amp; vgdisplay -v  &amp;amp; /etc/lvmtab before reboot, so after reboot it would be easy to deal with.&lt;BR /&gt;# bdf &amp;gt; bdf.txt &lt;BR /&gt;# vgdisplay -v &amp;gt; vgdisplay_v.txt 2&amp;gt;&amp;amp;1&lt;BR /&gt;# strings /etc/lvmtab &amp;gt; lvmtab.txt ; cp -p /etc/lvmtab ~lvmtab.copy.date&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;Raj.</description>
      <pubDate>Wed, 07 Oct 2009 17:53:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509655#M365662</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-10-07T17:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509656#M365663</link>
      <description>My apologies.  I said /etc/mnttab was the appropriate file.  It's not.  The correct file would be /etc/fstab.  &lt;BR /&gt;&lt;BR /&gt;For some reason I seem to get that backwards half the time.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 07 Oct 2009 18:05:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509656#M365663</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-10-07T18:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509657#M365664</link>
      <description>This is newly added filesystem. The previously filesystems are fine. I checked /etc/mnttab, the newly added filesystem was added after a line - such as servername:(pid1494) /net ignore ro,intr,port=821,map=-hosts,indirect,dev=0000 0 0 1254841786&lt;BR /&gt;&lt;BR /&gt;Should I move it up above this line?&lt;BR /&gt;&lt;BR /&gt;/etc/lvmrc hasn't been changed. it currently has AUTO_VG_ACTIVATE=0. Why did not this happen to other filesystems?</description>
      <pubDate>Wed, 07 Oct 2009 18:20:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509657#M365664</guid>
      <dc:creator>Rick Chen_1</dc:creator>
      <dc:date>2009-10-07T18:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509658#M365665</link>
      <description>Do not touch /etc/mnttab. &lt;BR /&gt;&lt;BR /&gt;If AUTO_VG_ACTIVATE was set to 0, then look further down in the /etc/lvmrc file, in the custom_vg_activation section (function) to see if the volume groups are listed there. &lt;BR /&gt;&lt;BR /&gt;Is this server (or was it before) part of a servicegurd cluster? That's when usually the AUTO_VG_AVTIVATE is set to 0. &lt;BR /&gt;&lt;BR /&gt;I have also seen other cases where after a power failure, the server would boot up faster than the external storgae system and if the volume group was on the external storage system it would not be available for activation right away. So these volume groups were activated at a later time via a custom start up script.</description>
      <pubDate>Wed, 07 Oct 2009 18:47:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509658#M365665</guid>
      <dc:creator>TTr</dc:creator>
      <dc:date>2009-10-07T18:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509659#M365666</link>
      <description>Rick Chen,&lt;BR /&gt;&lt;BR /&gt;&amp;gt; The new filesystem /dev/vgpacet6/lvol1 was added to /etc/fstab. It is not mounted after reboot. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;However in your case the problem is , the vg (vgpacet6)  was not activated during boot time. And so the filesystem was not mounted, no matter you have added the filesystem entry in /etc/fstab . ( fyi: it is not mnttab ) &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Q.&lt;BR /&gt;1. Is it a new vg recently created.? ( /dev/vgpacet6 ).&lt;BR /&gt;2. If yes,  has it been added to /etc/lvmrc . (Since AUTO_VG_ACTIVATE=0)&lt;BR /&gt;&lt;BR /&gt; If the answer is 'no' to question 1 , then you have to check if the vg vgpacet6 is there in the /etc/lvmrc or not.&lt;BR /&gt;&lt;BR /&gt;If vgpacet6 is not present in /etc/lvmrc it is obvious it will not be activated during boot time, and so the filesystem will not be mounted.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: &lt;BR /&gt;-ServiceGuard VG's get activated during the package start process. &lt;BR /&gt;- Other normal vgs gets activated from lvmrc &lt;BR /&gt;/etc/lvmrc  populate the function custom_vg_activation() , and activate the vgs.&lt;BR /&gt;&lt;BR /&gt;( Assuming VG_AUTO_ACTIVATE configured to 0 )&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Oct 2009 18:54:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509659#M365666</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-10-07T18:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509660#M365667</link>
      <description>Based on the information you provided I looked into /etc/fstab again and found out an incorrect character was added to "delaylog" which I believe caused this filesystem not mounted during reboot. Thanks everyone for the information.&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Oct 2009 20:09:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509660#M365667</guid>
      <dc:creator>Rick Chen_1</dc:creator>
      <dc:date>2009-10-07T20:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509661#M365668</link>
      <description>Rick, &lt;BR /&gt;Nice to know /etc/fstab wrong entry was the culprit and fixed it.&lt;BR /&gt;&lt;BR /&gt;Please take some time from your busy schedule to assign some "points" to the responses , as a token of appreciation.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Raj.</description>
      <pubDate>Wed, 07 Oct 2009 20:26:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509661#M365668</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-10-07T20:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509662#M365669</link>
      <description>&amp;gt;&amp;gt;I believe caused this filesystem not mounted during reboot. Thanks everyone for the information.&lt;BR /&gt;&lt;BR /&gt;That would have caused the filesystem to not be mounted.  However, if that was the only problem then the VG should have activated automatically.&lt;BR /&gt;&lt;BR /&gt;I believe it would be wise to double check your /etc/lvmrc file and look in the "manual VG activation" section to see if other VGs are listed.  If so, then vgpacet6 should be added as well.</description>
      <pubDate>Wed, 07 Oct 2009 23:45:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509662#M365669</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-10-07T23:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Filesystem after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509663#M365670</link>
      <description>Rick Chen,&lt;BR /&gt;&amp;gt; vgdisplay: Volume group not activated.&lt;BR /&gt;vgdisplay: Cannot display volume group "vgpacet6".&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Why do you need to activate the vg  manually , with vgchange -a y , after reboot.&lt;BR /&gt;&lt;BR /&gt;-It doesnt look like the problem was only due to bad entry in /etc/fstab,&lt;BR /&gt;&lt;BR /&gt;- I agree above, it would be wise to double check /etc/lvmrc if you have this vg listed under customer_vg_activation function. Else the same thing may repeat in next reboot.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Oct 2009 01:41:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/missing-filesystem-after-reboot/m-p/4509663#M365670</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-10-08T01:41:28Z</dc:date>
    </item>
  </channel>
</rss>

