- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Volume group not activated 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
03-06-2003 12:37 PM
03-06-2003 12:37 PM
vgchange -a y vg01
vgchange: Warning: Couldn't attach to the volume group physical volume "/dev/dsk
/c0t13d0":
The path of the physical volume refers to a device that does not
exist, or is not configured into the kernel.
vgchange: Warning: couldn't query physical volume "/dev/dsk/c0t13d0":
The specified path does not correspond to physical volume attached to
this volume group
vgchange: Warning: couldn't query all of the physical volumes.
vgchange: Couldn't activate volume group "vg01":
Quorum not present, or some physical volume(s) are missing??
Any help would be greatly appreciated...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2003 12:39 PM
03-06-2003 12:39 PM
Re: Volume group not activated after reboot
It sounds like you might have lost a hard disk or a controller when your system went down. What does 'ioscan -fnC disk' report for that disk?
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2003 12:43 PM
03-06-2003 12:43 PM
Re: Volume group not activated after reboot
Class I H/W Path Driver S/W State H/W Type Description
=====================================================================
disk 0 8/0.5.0 sdisk CLAIMED DEVICE SEAGATE ST39173WC
/dev/dsk/c0t5d0 /dev/rdsk/c0t5d0
disk 1 8/0.8.0 sdisk CLAIMED DEVICE SEAGATE ST39175LC
/dev/dsk/c0t8d0 /dev/rdsk/c0t8d0
disk 4 8/0.15.0 sdisk CLAIMED DEVICE SEAGATE ST318436LC
/dev/dsk/c0t15d0 /dev/rdsk/c0t15d0
disk 2 8/16/5.2.0 sdisk CLAIMED DEVICE TOSHIBA CD-ROM XM-5701T
A
/dev/dsk/c1t2d0 /dev/rdsk/c1t2d0
8/0.15.0 is the mirrored disk to the one that is missing...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2003 12:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2003 12:47 PM
03-06-2003 12:47 PM
Re: Volume group not activated after reboot
Sure does look like you've lost c0t13d0.
If you HAVE to get this up run
vgchange -q n -a y /dev/vg01
This will force it to ignore quorum. But get that PV replaced, because now you have no mirror & vg01 has a single point of failure.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2003 01:19 PM
03-06-2003 01:19 PM
Re: Volume group not activated after reboot
Once I get a new disk, what's the best way to re-sync the disks and get the mirroring going again?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2003 01:28 PM
03-06-2003 01:28 PM
Re: Volume group not activated after reboot
first shutdown the system and install the new disk and when it boots up, interrupt it to got to ISL mode and boot it up in single user mode.
ISL> hpux -is (;0)/stand/vmunix
Then run these .. (cXtXd0 is your newly installed disk).
# pvcreate -f /dev/rdsk/cXtXd0
# vgcfgrestore -n /dev/vg01 /dev/rdsk/cXtXd0
# vgchange -a y /dev/vg01
# vgsync /dev/vg01
# shutdown -r 0
Oh .. I forgot .. make sure /etc/lvmconf/vg01.conf is good before you do anything at all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 07:27 PM
03-07-2003 07:27 PM
Re: Volume group not activated after reboot
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2003 11:23 AM
03-08-2003 11:23 AM
Re: Volume group not activated after reboot
Eugeny