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
01-21-2002 09:37 PM
01-21-2002 09:37 PM
lvm
getting this:
Following Physical Volumes belong to one Volume Group.
Unable to match these Physical Volumes to a Volume Group.
Use the vgimport command to complete the process.
/dev/dsk/c1t5d0
/dev/dsk/c1t6d0
How do I find to which VG they bellong to?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 09:49 PM
01-21-2002 09:49 PM
Re: lvm
pvdisplay /dev/dsk/c1t6d0
Cheers...
Satish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 10:06 PM
01-21-2002 10:06 PM
Re: lvm
pvdisplay: Couldn't find the volume group to which
physical volume "/dev/dsk/c1t5d0" belongs.
pvdisplay: Cannot display physical volume "/dev/dsk/c1t5d0".
Thanks Satish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 10:10 PM
01-21-2002 10:10 PM
Re: lvm
Hi,
just try
#vgimport -v /dev/dsk/c1t5d0 /dev/dsk/c1t6d0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 10:25 PM
01-21-2002 10:25 PM
Re: lvm
vgimport -v /dev/dsk/c1t5d0 /dev/dsk/c1t6d0
Beginning the import process on Volume Group "/dev/dsk/c1t5d0".
vgimport: Cannot open the control file "/dev/dsk/c1t5d0/group":
Not a directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 10:48 PM
01-21-2002 10:48 PM
Re: lvm
I think somebody created physical volumes(pvcreate) on these disks and let them without adding to any VG u, can findout by:
# pvcreate /dev/dsk/c1t5d0
# pvcreate /dev/dsk/c1t6d0
If it says physical volume already exist, then my guess is correct... In this case u can create a temporaray VG and a single LV using whole space, run newfs, mount filesystem and check data...
Otherwise,
1) # vgdisplay -v | more
and find out which VG is giving error that unable to quesry PV.
2) # vgexport -m -p -v /tmp/vgname.map /dev/vgname
3) check the map file whether all LVs present or not.... and notedown the present disks belongs to VG and minor number.
4) umount all filesystems mounted and make a list of them
5) # vgexport -m /tmp/vgname.map -v /dev/vgname
6) # mkdir -p /dev/vgname
# mknod /dev/vgname/group c 64 0x010000
7) # vgimport -v -m /tmp/vgname.map /dev/vgname /dev/dsk/c1t5d0 /dev/dsk/c1t6d0 /dev/dsk/cxtydz ..... #rest all PVs
8) Mount all the filesystems.
Hope this helps.........
Cheers...
Satish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 11:33 PM
01-21-2002 11:33 PM
Re: lvm
Try to type "strings /etc/lvmtab" to check if the PV is there. If not, used vgimport to import the PV to a new VG by:
# mkdir /dev/vgXX
# mknod /dev/vgXX/group c 64 0xXX0000
# vgimport -v /dev/vgXX /dev/dsk/cXtXdX /dev/dsk/cXtXdX
Hope this helps.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2002 07:57 AM
01-22-2002 07:57 AM
Re: lvm
I attached a lvm11 executable I got from HP that will read the lvm header and tell you what host it is created from.
If it was created from another system verify that that system no longer needs the drive.
If you know it is save to use drive
simply do a vgimport after creating the directory and device file for group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2002 07:58 AM
01-22-2002 07:58 AM
Re: lvm
I attached a lvm11 executable I got from HP that will read the lvm header and tell you what host it is created from.
If it was created from another system verify that that system no longer needs the drive.
If you know it is save to use drive
simply do a vgimport after creating the directory and device file for group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2002 10:55 PM
01-22-2002 10:55 PM