- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to add volume groups
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-16-2001 11:19 AM
07-16-2001 11:19 AM
Unable to add volume groups
I've added two Seagate FW SCSI drives to an external cabinet in order to add disk onto a test box (why buy it when I already have it?); the problem is both drives were used previously and I am unable to add a vg to the system as there are still physical extents being utilized. How can I remove that "image" and start over on these disks?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 11:22 AM
07-16-2001 11:22 AM
Re: Unable to add volume groups
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 11:23 AM
07-16-2001 11:23 AM
Re: Unable to add volume groups
Do a pvcreate -f on both drives first.
e.g. pvcreate -f /dev/rdsk/c2t6d0
pvcreate -f /dev/rdsk/c2t5do
Use the appropriate device path.
You should then be able to do a vgcreate.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 11:39 AM
07-16-2001 11:39 AM
Re: Unable to add volume groups
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 11:43 AM
07-16-2001 11:43 AM
Re: Unable to add volume groups
Evidently you didn't do a vgexport to properly clean up. Do a strings /etc/lvmtab and look for the volume group which has the unused/unwanted devices. e.g. vg02
Then, vgexport /dev/vg02
You can also cp /etc/lvmtab /etc/lvmtab.old and do a vgscan to recreate it.
Clay