- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- recovering volume group info
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
05-17-2006 03:01 AM
05-17-2006 03:01 AM
Does anyone know if there a checklist that explains the steps we need to take to recover this development machine.
TIA
Dave
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 03:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 03:07 AM
05-17-2006 03:07 AM
Re: recovering volume group info
Do a man vgscan for more info.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 03:27 AM
05-17-2006 03:27 AM
Re: recovering volume group info
for the vg name you can try to run the pvdisplay command in the disks connect at the system.
You should have the output:
pvdisplay: Couldn't retrieve the names of the physical volumes belonging to volume group "/dev/vgname".
Then
mkdir /dev/vgname
mknod /dev/vgname/group c 64 0xNN0000
(where NN are sequential number)
vgscan -a
strings /etc/lvmtab (for VG/DISK association)
vgimport /dev/vgname pv_paths
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 04:02 AM
05-17-2006 04:02 AM
Re: recovering volume group info
do a: vgcfgrestore -n /dev/vgname /dev/rdsk/cxtxdx
then do: mkboot /dev/rdsk/cx0txdx
then do: mkboot -a "hpux -lq" /dev/rdsk/cxtxdx
then a: vgchange -a y vgname
and finally a: vgsync vgname
that should do the trick for you if the root disk was mirrored.
Regards,
Jaime
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 08:49 AM
05-17-2006 08:49 AM
Re: recovering volume group info
I also wish I could get the company to spring for mirrored disks but, oh well...
Thanks again