- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Exporting VG
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
10-24-2004 11:15 PM
10-24-2004 11:15 PM
When I do vgexport what I actually delete: /etc/lvmtab or /dev/vgxx/** or both?
I know that the data in BDRA on the disks is not affected.
Dejan.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2004 11:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2004 11:21 PM
10-24-2004 11:21 PM
Re: Exporting VG
you delete the device files under /dev/vgxx/
as well as the corresponding entries in /etc/lvmtab
Regards
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2004 11:25 PM
10-24-2004 11:25 PM
Re: Exporting VG
Actually Both are affected.
When u do vgexport, that vg get removed from lvmtab and the /dev/vgxx gets deleted.
But if you do vgexport with -p option then nothing is disturbed but this allows you to create map of that VG which you can use for replicating the VG structure on the other node.
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2004 12:16 AM
10-25-2004 12:16 AM
Re: Exporting VG
Dejan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2004 01:19 AM
10-25-2004 01:19 AM
Re: Exporting VG
You can do vgimport and get the entire VG structure onto another system.
Now even though the H/w paths are not same then also you can import it successfully. Only thing you have take care of is to identfy the PV's correctly that belongs to that VG.
Then you can do this:
# vgimport -m
That works fine.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2004 01:42 AM
10-25-2004 01:42 AM
Re: Exporting VG
Prior to the vgimport - you also have to create the vgXX dir and group file:
mkdir /dev/vgXX
mknod /dev/vgXX/group c 64 0xHH0000
Where XX is the volume group number in decimal - like say vg10 and HH is the minor number (must be unique!) in hex - like 0a
Rgds...Geoff