- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- EMC volumes not available after reboot
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:06 AM
10-24-2003 02:06 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:13 AM
10-24-2003 02:13 AM
SolutionDo you have, or have you had Service Guard on this system?
If so, then check the /etc/lvmrc file as you may need to set
AUTO_VG_ACTIVATE=1
if you no longer use MC/SG.
If you are using it, then add them to the
custom_vg_activation()
function.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:18 AM
10-24-2003 02:18 AM
Re: EMC volumes not available after reboot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:21 AM
10-24-2003 02:21 AM
Re: EMC volumes not available after reboot
check you /etc/lvmrc file and see if the entry AUTO_VG_ACTIVATE is set to "0". If this is set to zero, no vg other than root will get activated automaticallt at the system boot. Any vg that gets activated automatically in this situation may be mentioned in the custom_vg_activate section in the same file.
If you want all the vg's on the system to be activated at the time of system boot, change the auto_vg_activate to "1" from "0".
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:23 AM
10-24-2003 02:23 AM
Re: EMC volumes not available after reboot
Then you'll need to add these non-MC/SG VGs to that custom_vg_activation() function or they won't be auto-activated at boot.
You just add them all as follows:
/sbin/vgchange -a y /dev/vg_name1
/sbin/vgchange -a y /dev/vg_name2
etc...
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:25 AM
10-24-2003 02:25 AM
Re: EMC volumes not available after reboot
Also, I think I remember seeing a posting about a similar problem where the startup scripts didnt allow enough time to recognize the Frame disks. And that a sleep statement in the RC script solved the problem... However, I can't remember exactly what it referred to.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:25 AM
10-24-2003 02:25 AM
Re: EMC volumes not available after reboot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:33 AM
10-24-2003 02:33 AM
Re: EMC volumes not available after reboot
Is it true that I should not change AUTO_VG_ACTIVATE=0 to 1 since I am currently using service guard on this server.
Second I can without effecting service guard and any of it's volumes add the volume groups that I want to be activated under
custom_vg_activation right after vg00.
For example:
/sbin/vgchange -a y /dev/vg00
/sbin/vgchange -a y /dev/vg_y101
So, leave AUTO set at 0 and add under custom_vg_activation in /etc/lvmrc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2003 02:36 AM
10-24-2003 02:36 AM
Re: EMC volumes not available after reboot
Yes - exactly.
Leave it at 0 & add the non-MC/SG VGs to the activate function.
Rgds,
Jeff