- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Unable to activate 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
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
тАО09-21-2000 05:44 AM
тАО09-21-2000 05:44 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-21-2000 05:50 AM
тАО09-21-2000 05:50 AM
Solutionll /dev/vg05a/group (make a note of the minor number)
vgexport /dev/vg05a
mkdir /dev/vg05a
mknod /dev/vg05a/group c 64 0xYY0000 (this is the minor number from above)
vgimport /dev/vg05/a /dev/dsk/
vgchange -a y /dev/vg05a
and that should be it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-21-2000 05:53 AM
тАО09-21-2000 05:53 AM
Re: Unable to activate volume groups
first deactivate the vg05a with:
# vgchange -a n vg05a
then remove entries for vg05a from the lvmtabs...
# vgexport /dev/vg05a
now re-read the lvm details from the disk /dev/dsk/c4t5d0
# vgimport /dev/vg05a /dev/dsk/c4t5d0
re-activate the vg05a with:
# vgchange -a y vg05a
that is it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-21-2000 05:57 AM
тАО09-21-2000 05:57 AM
Re: Unable to activate volume groups
ll /dev/vg05a
and note the minor number of the file group
vgexport -m /tmp/vg05a.map vg05a
to remove the old vg05a from your system
mkdir /dev/vg05a
mknod /dev/vg05a/group c 64 0x??0000
where ?? is the same as the original group
vgimport -m /tmp/vg05a.map \ vg05a /dev/dsk/c4t5d0
vgchange -a y vg05a
vgcfgbackup vg05a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-21-2000 06:08 AM
тАО09-21-2000 06:08 AM