- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LVM after Ignite
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
06-24-2003 12:29 PM
06-24-2003 12:29 PM
Now that I have reignited my machine my lvmtab is blank except for some info about vg00.
I tried running vgscan but I get the following..
The Volume Group /dev/vg01/group was not matched with any Physical Volumes.
The Volume Group /dev/vg02/group was not matched with any Physical Volumes.
The Volume Group /dev/vg03/group was not matched with any Physical Volumes.
The Volume Group /dev/vg04/group was not matched with any Physical Volumes.
The Volume Group /dev/vg05/group was not matched with any Physical Volumes.
The Volume Group /dev/vg06/group was not matched with any Physical Volumes.
The Volume Group /dev/vg07/group was not matched with any Physical Volumes.
The Volume Group /dev/vg08/group was not matched with any Physical Volumes.
The Volume Group /dev/vg09/group was not matched with any Physical Volumes.
The Volume Group /dev/vg10/group was not matched with any Physical Volumes.
The Volume Group /dev/vg11/group was not matched with any Physical Volumes.
The Volume Group /dev/vg12/group was not matched with any Physical Volumes.
The Volume Group /dev/vg13/group was not matched with any Physical Volumes.
The Volume Group /dev/vg14/group was not matched with any Physical Volumes.
The Volume Group /dev/vg15/group was not matched with any Physical Volumes.
The Volume Group /dev/vg16/group was not matched with any Physical Volumes.
The Volume Group /dev/vg17/group was not matched with any Physical Volumes.
The Volume Group /dev/vg18/group was not matched with any Physical Volumes.
The Volume Group /dev/vg19/group was not matched with any Physical Volumes.
The Volume Group /dev/vg20/group was not matched with any Physical Volumes.
The Volume Group /dev/vg21/group was not matched with any Physical Volumes.
The Volume Group /dev/vg22/group was not matched with any Physical Volumes.
Any advice?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2003 12:34 PM
06-24-2003 12:34 PM
Re: LVM after Ignite
Is the machine you ignited connected to the same disks that the source machine was? Your LVM is probably complaining because those volume groups that were described cannot see the physical volumes assigned to them. If you are connected to your disk storage, it is possible that your controller numbers have changed.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2003 12:41 PM
06-24-2003 12:41 PM
Re: LVM after Ignite
If you Ignited to the same hardware as that from which you created your Ignite recovery tape, I'd say that the disk device files changed -- not uncommon during a cold-install (which this is).
If you want to use 'vgscan' to deduce what devices belong to what volume groups, make a copy of the current '/etc/lvmtab'; remove it; and run 'vgscan -p -v -a'. Redirect the output to a file for examination and put the 'etc/lvmtab' back in place. Now 'vgimport' your various volume groups using the correct device files.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2003 01:26 PM
06-24-2003 01:26 PM
SolutionThere are couple of options.
One - Move /etc/lvmtab as /etc/lvmtab and run 'vgscan' and find out the disks corresponding to the VGS.
Two - Since you ignited the box from the old image, you will get the configuration files back in /etc/lvmconf with mapfiles. Look at the timestampes of vgxx.conf files. If they are reasonably new (or you are sure you didn't make any changes to the VGs after the dates indicated by the time stamps), you can get the PVs associated with the vgs by doing a 'strings vgxx.conf'. You will also find the map files.
#strings vg01.conf|grep dsk |sed 's/rdsk/dsk/g' > /tmp/vg01.disks
#mkdir /dev/vg01
#mknod /dev/vg01/group 0x010000
#vgimport -v -m /etc/lvmconf/vg01.map -f /tmp/vg01.disks vg01
If it is successful, then you can do a vgchange -a y and get the VG going.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2003 06:03 AM
06-26-2003 06:03 AM
Re: LVM after Ignite
hp40:/dev # vgimport -v -m /etc/lvmconf/vg08.mapfile -f /tmp/vg08.disks
Usage: vgimport
[-p]
[-v]
[-s]
[-m MapFile]
VolumeGroupName PhysicalVolumePath...
or: vgimport [-p] [-v] [-m MapFile] -f InFile VolumeGroupName
More arguments required.
hp40:/dev #
Any suggestions..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2003 06:05 AM
06-26-2003 06:05 AM
Re: LVM after Ignite
You left out the vgname: last argument in Sri's command string (vg01).
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2003 06:06 AM
06-26-2003 06:06 AM
Re: LVM after Ignite
you forgot vg name.
Regards,
jerome