- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: cur lv not equal to open lv, not mapping
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-09-2003 12:12 AM
07-09-2003 12:12 AM
vgremove: Volume group "vg01" still contains a logical volume(s).
vgremove: Couldn't remove volume group "vg01".
when I use sam, -> Disk and File system -> volume groups -> vg01 ->
physical volumes=3, logical volume=1
but when i look into 'more information', there's no any logical volumes.
I also notice that the cur lv not equal to open lv, when I execute vgdisplay -v vg01.
result show as above.
--- Volume groups ---
VG Name /dev/vg01
VG Write Access read/write
VG Status available
Max LV 255
Cur LV 1
Open LV 0
Max PV 16
Cur PV 3
Act PV 3
Max PE per PV 2170
VGDA 6
PE Size (Mbytes) 4
Total PE 6510
Alloc PE 4340
Free PE 2170
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0
--- Physical volumes ---
PV Name /dev/dsk/c0t2d0
PV Status available
Total PE 2170
Free PE 0
Autoswitch On
PV Name /dev/dsk/c2t2d0
PV Status available
Total PE 2170
Free PE 0
Autoswitch On
PV Name /dev/dsk/c2t3d0
PV Name /dev/dsk/c0t3d0 Alternate Link
PV Status available
Total PE 2170
Free PE 2170
Autoswitch On
don't have any clue to remove vg01, how should i do ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 12:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 12:15 AM
07-09-2003 12:15 AM
Re: cur lv not equal to open lv, not mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 12:16 AM
07-09-2003 12:16 AM
Re: cur lv not equal to open lv, not mapping
what does
ll /dev/vg01/*
reports ?
Is there any other vg with the same minor ?
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 12:17 AM
07-09-2003 12:17 AM
Re: cur lv not equal to open lv, not mapping
/dev/vg01
>[B2
/dev/dsk/c0t2d0
/dev/dsk/c0t3d0
/dev/dsk/c2t2d0
/dev/dsk/c2t3d0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 12:20 AM
07-09-2003 12:20 AM
Re: cur lv not equal to open lv, not mapping
there's only a `group` file
crw-rw-rw- 1 root sys 64 0x010000 Jul 8 22:01 group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 01:13 AM
07-09-2003 01:13 AM
Re: cur lv not equal to open lv, not mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 01:36 AM
07-09-2003 01:36 AM
Re: cur lv not equal to open lv, not mapping
cd /dev/vg01
mknod lvol1 b 64 0x010001
mknod rlvol1 c 64 0x010001
then, lvremove /dev/vg01/lvol1
now, the cur lv and open lv count are the same.
to release 'Alloc PE'
vgexport vg01
vgremove vg01
cp /etc/lvmtab /etc/lvmtab.old.2
vgscan -v
mkdir /vg01
mknod /dev/vg01 /group c 64 0x010000
pvcreate -f /dev/rdsk/c0t2d0
pvcreate -f /dev/rdsk/c2t2d0
pvcreate -f /dev/rdsk/c2t3d0
vgcreate /dev/vg01 /dev/dsk/c0t2d0 /dev/dsk/c2t2d0 /dev/dsk/c2t3d0
done.