- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Cannot remove a clustered 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
Discussions
Discussions
Discussions
Forums
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
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
тАО04-29-2004 08:53 PM
тАО04-29-2004 08:53 PM
I have reconfigured one cluster and now I doesn't have the vg02 in the cluster.
I want to eliminated the /dev/vg02, but when I do:
#vgremove /dev/vg02
#vgremove: Volume group /dev/vg02 is in a cluster. Cannot remove a clustered volume group.
#vgremove: Couldn't remove volume group "/dev/vg02".
What have I to do?
Thanks!,
Carmen.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 08:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 08:59 PM
тАО04-29-2004 08:59 PM
Re: Cannot remove a clustered volume group.
vgchange -c n vg02
Then remove it as a normal volume group from each server of the cluster.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 09:00 PM
тАО04-29-2004 09:00 PM
Re: Cannot remove a clustered volume group.
Make the volume group cluster unaware and then remove it
vgchange -c n vg02
vgremove vg02
It will work
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 09:06 PM
тАО04-29-2004 09:06 PM
Re: Cannot remove a clustered volume group.
Tamil has suggested the exact procedure and i am sure it will work for you.
#vgchange -c n /dev/vg02
Removes cluster lock on VG02
#vgchange -a n /dev/vg02
Deactivates VG
#vgexport /dev/vg02
exporting vg02 will remove entire VG and associated files from your system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 09:11 PM
тАО04-29-2004 09:11 PM
Re: Cannot remove a clustered volume group.
I confirm
vgchange -c n vg02
if you have to remove vg02
first remove lvols
umount /fs
lvremove /dev/vg02/lvolx
then
vgremove /dev/vg02
to delete vg02 and export the vg from /etc/lvmtab
vgexport /dev/vg02
Hope this helps
L.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 09:14 PM
тАО04-29-2004 09:14 PM
Re: Cannot remove a clustered volume group.
the command
vgchange -a n vg02 (deactivate the vg)
type it after vgchange -c n vg02
L.
p.s bahrat learns!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-30-2004 06:49 PM
тАО04-30-2004 06:49 PM
Re: Cannot remove a clustered volume group.
To remove any volume group from cluster configuration -
#vgchange -c n vg02
#vgchange -a n vg02
#vgexport vg02
Ensure that there is no enrty in /etc/lvmtab
move /etc/lvmtab to /etc/lvmtab.old
and execute
#vgscan -a
You did not mentioned that package is of OPS or not? if OPS, then you need to use
# vgchange -S n -c n vg02
#vgchange -a n vg02
#vgexport vg02
Cheers..
NAVID