- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Restore Volume Group
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
07-02-2004 11:57 AM
07-02-2004 11:57 AM
Restore Volume Group
vgchange: Warning: Couldn't attach to the volume group physical volume "/dev/dsk/c15t0d0":
Cross-device link
vgchange: Warning: couldn't query physical volume "/dev/dsk/c15t0d0":
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 "vg_des2":
Quorum not present, or some physical volume(s) are missing.
How can I fix this problem? Is there any way to restore the VG configuration? Do I have to recreate the entire volume group? I would like some help on this. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 12:07 PM
07-02-2004 12:07 PM
Re: Restore Volume Group
Once you lost the redundancy factor number of disk drives out of your raid array, it is basically a losing game. Cutting your losses and starting to rebuild the structure while you are time-wise ahead may be the best you can do.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 07:32 PM
07-02-2004 07:32 PM
Re: Restore Volume Group
Hope u have good backups. Time to go for RAID-1 if u can buy few more disks.
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 08:14 PM
07-02-2004 08:14 PM
Re: Restore Volume Group
After a good pray you can try to do the following:
ll /dev/vgdes2/group
and remember it's minor, let it be 0x030000
strings /etc/lvmtab
and remember all the disk, belonnging to vg_des2
vgexport vg_des2
mkdir /dev/vgdes2
mknod /dev/vgdes2/group c 64 0x030000
vgimport /dev/vgdes2 /dev/dsk/disk1 /dev/dsk/disk2 etc..
You can change the list of disks in a hope to restore data on the vg.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2004 04:32 AM
07-03-2004 04:32 AM
Re: Restore Volume Group
/dev/vg00
/dev/dsk/c1t2d0
/dev/dsk/c1t0d0
/dev/vg02
/dev/dsk/c2t0d0
/dev/dsk/c2t2d0
/dev/vg_prod2
/dev/dsk/c15t0d1
/dev/vg_des2
/dev/dsk/c15t0d0
When I execute "pvdisplay -v /dev/dsk/c15t0d0" I get the following:
pvdisplay: Warning: couldn't query physical volume "/dev/dsk/c15t0d0":
The specified path does not correspond to physical volume attached to
this volume group
pvdisplay: Warning: couldn't query all of the physical volumes.
pvdisplay: Couldn't retrieve the names of the physical volumes
belonging to volume group "/dev/vg_des2".
pvdisplay: Cannot display physical volume "/dev/dsk/c15t0d0".
How can I do to reuse the PV?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2004 12:43 AM
07-04-2004 12:43 AM
Re: Restore Volume Group
You will need to recreate the PV or do a vgcfg restore onto the device. I hope ioscan is showing the device. see the man pages for vgcfgrestore and give it a try
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2004 04:14 PM
07-04-2004 04:14 PM
Re: Restore Volume Group
Here is what I do to recover....
mv /etc/lvmtab /etc/lvmtab.old
vgscan
vgchange -a y /dev/vg0n
fsck -F vxfs /dev/vg0n/lvolnn
mount .....
Explaination:
lvmtab does not reflect new config - rename it.
Create a new lvmtab - it will scan the new config.
THEN active the volume group
fsck - make sure all is well - you may have to do a full check
Finally, mount your disk -
Cheers
Leon