<?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: Everytime I Reboot my Database Doesn't Work ! in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570885#M228139</link>
    <description>If you are able to activate VG manually, check the lvmrc file under etc &amp;amp; sbin.&lt;BR /&gt;Also check the /etc/rc.log what is the error while booting (activating all vgs).&lt;BR /&gt;pvcreate -f will lead all data loss.&lt;BR /&gt;(you cannot pvcreate if disk is already recorded in lvmtab)&lt;BR /&gt;Regds&lt;BR /&gt;TT&lt;BR /&gt;</description>
    <pubDate>Tue, 28 Jun 2005 10:44:09 GMT</pubDate>
    <dc:creator>Thayanidhi</dc:creator>
    <dc:date>2005-06-28T10:44:09Z</dc:date>
    <item>
      <title>Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570871#M228125</link>
      <description>Everytime I reboot my database does not work.&lt;BR /&gt;I need to activate by using vgchange -a y all&lt;BR /&gt;the vg's listed on my /etc/lvmtab for my database to work. How to configure my system&lt;BR /&gt;so that it will automatically activate the the databases vg's everytime it reboots.</description>
      <pubDate>Sun, 26 Jun 2005 09:37:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570871#M228125</guid>
      <dc:creator>Danny Baldono</dc:creator>
      <dc:date>2005-06-26T09:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570872#M228126</link>
      <description>can you please check the AUTO_VG_ACTIVATE parameter in /etc/lvmrc. If it is set to 0, system will not activate all the VGs during startup. Set AUTO_VG_ACTIVATE to 1 for automatic vg activation.&lt;BR /&gt;&lt;BR /&gt;I assume yours is not a cluster env.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sudeesh</description>
      <pubDate>Sun, 26 Jun 2005 11:06:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570872#M228126</guid>
      <dc:creator>Sudeesh</dc:creator>
      <dc:date>2005-06-26T11:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570873#M228127</link>
      <description>hi danny&lt;BR /&gt;&lt;BR /&gt;Check /etc/bcheckrc--&amp;gt;/sbin/bcheckrc ==&amp;gt; This is the script that&lt;BR /&gt;executes /sbin/lvmrc which is illustrated in the following lines of code:&lt;BR /&gt;&lt;BR /&gt;   if [ -x /sbin/lvmrc ]&lt;BR /&gt;   then&lt;BR /&gt;          echo "Checking for LVM volume groups and Activating (if any exists)"&lt;BR /&gt;          /sbin/lvmrc&lt;BR /&gt;   fi&lt;BR /&gt;&lt;BR /&gt;Knowing that the above-code is looking for x (executable) permission,&lt;BR /&gt;if /sbin/lvmrc is not executable then this is the problem.&lt;BR /&gt;Checking /sbin/lvmrc:&lt;BR /&gt;&lt;BR /&gt;    ll /sbin/lvmrc&lt;BR /&gt;&lt;BR /&gt;   -r-sr--r--  ==&amp;gt; Notice there is no x (executable) permission to this script.&lt;BR /&gt;&lt;BR /&gt;Changing permission:&lt;BR /&gt;&lt;BR /&gt;    chmod 544 /sbin/lvmrc&lt;BR /&gt;    ll /sbin/lvmrc&lt;BR /&gt;&lt;BR /&gt;    -r-xr--r--  ==&amp;gt; Notice there is now x (executable) permission.&lt;BR /&gt;&lt;BR /&gt;Rebooting the system fixes the problem.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;Vinod K</description>
      <pubDate>Sun, 26 Jun 2005 22:00:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570873#M228127</guid>
      <dc:creator>vinod_25</dc:creator>
      <dc:date>2005-06-26T22:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570874#M228128</link>
      <description>Actually, if you change the permission from -r-sr--r-- to -r-xr--r--, you could potentially mess something up.  The 's', or Set-UID permission bit, DOES indicate that execute permission was set on the file.  I would recommend that you NOT MESS WITH permission on that file.  The set-uid bit was probably set for a reason.&lt;BR /&gt;&lt;BR /&gt;The most likely reason is that AUTO_VG_ACTIVATE is OFF in the /etc/lvmrc file.&lt;BR /&gt;&lt;BR /&gt;I would definitely check that first!</description>
      <pubDate>Sun, 26 Jun 2005 22:17:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570874#M228128</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-06-26T22:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570875#M228129</link>
      <description>Thank you very much on all your replies.&lt;BR /&gt;It is very encouraging that I got replies &lt;BR /&gt;immediately. &lt;BR /&gt;&lt;BR /&gt;The present AUTO_VG_ACTIVATE=1.&lt;BR /&gt;&lt;BR /&gt;I forgot to mention that during the boot-up process on activating each vg's, I got an&lt;BR /&gt;error of "no such device or address". I don't know exactly the exact error but as far as I can remember it is like "no such&lt;BR /&gt;device". When the system booted up and execute bdf, only the vg00 is active.</description>
      <pubDate>Tue, 28 Jun 2005 01:08:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570875#M228129</guid>
      <dc:creator>Danny Baldono</dc:creator>
      <dc:date>2005-06-28T01:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570876#M228130</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Is database vg on seperate disk? If yes, probably that disc has failed now. Please check the disk in ioscan and do dd to query the disk. If successful, vg configuartion has probably corrupted. Restore vg configuration from vgcfgbackup and edit lvmrc. &lt;BR /&gt;&lt;BR /&gt;good luck&lt;BR /&gt;Mahesh&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Jun 2005 03:55:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570876#M228130</guid>
      <dc:creator>Mahesh Kumar Malik</dc:creator>
      <dc:date>2005-06-28T03:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570877#M228131</link>
      <description>You don't mention it, but is this volume group by any chance on a HP EVA disk array? Are you using SecurePath software for load balancing?&lt;BR /&gt;&lt;BR /&gt;Old versions of SecurePath didn't create their disk devices before /etc/lvmrc tried to activate the volume groups.&lt;BR /&gt;&lt;BR /&gt;If this is the case, upgrading to the latest vesrion of SecurePath for HPUX (3.0F I think) should fix the problem.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Tue, 28 Jun 2005 04:02:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570877#M228131</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2005-06-28T04:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570878#M228132</link>
      <description>Hi Mahesh,&lt;BR /&gt;&lt;BR /&gt;The database is on separate disk. I run ioscan the disk are all present/claimed.&lt;BR /&gt;How to "to restore vg from configuration&lt;BR /&gt;vgcfgbackup"? Also what part/item of lvmrc&lt;BR /&gt;needs editing. I just want keep the present working system configuration that once I reboot again, I will not activate manually&lt;BR /&gt;all the vg's related to the database.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Danny&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Jun 2005 04:32:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570878#M228132</guid>
      <dc:creator>Danny Baldono</dc:creator>
      <dc:date>2005-06-28T04:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570879#M228133</link>
      <description>Hi Duncan,&lt;BR /&gt;&lt;BR /&gt;Thanks for the input, but I am not using&lt;BR /&gt;HP EVA neither Securepath, I am just using&lt;BR /&gt;JBOD's.&lt;BR /&gt;&lt;BR /&gt;Danny&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Jun 2005 04:36:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570879#M228133</guid>
      <dc:creator>Danny Baldono</dc:creator>
      <dc:date>2005-06-28T04:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570880#M228134</link>
      <description>Did u identify the disk device which is giving issue ? &lt;BR /&gt;&lt;BR /&gt;You can use: strings /etc/lvmtab to identify all the volume groups and their attached disk devices. Once you have the disk devices use the following command to check the hard disk. This will ensure the disk is functional. This should show the disk size correctly (zero size means disk is bad).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;vgcfgrestore -n &lt;VGNAME&gt; &lt;RAW disk="" device=""&gt;&lt;BR /&gt;will do a vgcfg restore frm default configuration file. Do a man for additional options.&lt;BR /&gt;&lt;BR /&gt;Sudeesh&lt;BR /&gt;&lt;BR /&gt;diskinfo -v /dev/rdsk/cxtydz&lt;BR /&gt;&lt;/RAW&gt;&lt;/VGNAME&gt;</description>
      <pubDate>Tue, 28 Jun 2005 05:32:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570880#M228134</guid>
      <dc:creator>Sudeesh</dc:creator>
      <dc:date>2005-06-28T05:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570881#M228135</link>
      <description>Last post is not properly displayed:&lt;BR /&gt;&lt;BR /&gt;Did u identify the disk device which is giving issue ? &lt;BR /&gt;&lt;BR /&gt;You can use: strings /etc/lvmtab to identify all the volume groups and their attached disk devices. Once you have the disk devices use the following command to check the hard disk. This will ensure the disk is functional. This should show the disk size correctly (zero size means disk is bad).&lt;BR /&gt;diskinfo -v /dev/rdsk/cxtydz &lt;BR /&gt;&lt;BR /&gt;vgcfgrestore -n &lt;VGNAME&gt; &lt;RAW disk="" device=""&gt;&lt;BR /&gt;will do a vgcfg restore frm default configuration file. Do a man for additional options.&lt;BR /&gt;&lt;BR /&gt;Sudeesh&lt;BR /&gt;&lt;/RAW&gt;&lt;/VGNAME&gt;</description>
      <pubDate>Tue, 28 Jun 2005 05:35:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570881#M228135</guid>
      <dc:creator>Sudeesh</dc:creator>
      <dc:date>2005-06-28T05:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570882#M228136</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you said you got an error.&lt;BR /&gt;Please search in &lt;BR /&gt;/etc/rc.log &lt;BR /&gt;or&lt;BR /&gt;/var/adm/syslog/syslog.log&lt;BR /&gt;for the error message and post it here.&lt;BR /&gt;&lt;BR /&gt;Volkmar&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Jun 2005 05:47:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570882#M228136</guid>
      <dc:creator>V. Nyga</dc:creator>
      <dc:date>2005-06-28T05:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570883#M228137</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Post the /etc/lvmrc and /sbin/lvmrc files.&lt;BR /&gt;Or compare it with other servers.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;TT&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Jun 2005 07:48:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570883#M228137</guid>
      <dc:creator>Thayanidhi</dc:creator>
      <dc:date>2005-06-28T07:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570884#M228138</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Follow the steps below:&lt;BR /&gt;&lt;BR /&gt;pvcreate -f &lt;RAW device="" file="" of="" disk=""&gt;&lt;BR /&gt;vgcfgrestore -n vgname pv_path&lt;BR /&gt;restore db&lt;BR /&gt;reboot and check&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Mahesh&lt;/RAW&gt;</description>
      <pubDate>Tue, 28 Jun 2005 08:48:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570884#M228138</guid>
      <dc:creator>Mahesh Kumar Malik</dc:creator>
      <dc:date>2005-06-28T08:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Everytime I Reboot my Database Doesn't Work !</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570885#M228139</link>
      <description>If you are able to activate VG manually, check the lvmrc file under etc &amp;amp; sbin.&lt;BR /&gt;Also check the /etc/rc.log what is the error while booting (activating all vgs).&lt;BR /&gt;pvcreate -f will lead all data loss.&lt;BR /&gt;(you cannot pvcreate if disk is already recorded in lvmtab)&lt;BR /&gt;Regds&lt;BR /&gt;TT&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Jun 2005 10:44:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/everytime-i-reboot-my-database-doesn-t-work/m-p/3570885#M228139</guid>
      <dc:creator>Thayanidhi</dc:creator>
      <dc:date>2005-06-28T10:44:09Z</dc:date>
    </item>
  </channel>
</rss>

