- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- VG Mounting & LV Access
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
06-25-2006 07:24 PM
06-25-2006 07:24 PM
This is the Scenerio...
I AM MOVING THE DISK1 FROM
SERVER1------->SERVER2
SERVER1:-
/dev/vg03/lvol1---->c2t0d0
/dev/vg03/lvol2---->c2t0d0
/dev/vg03/lvol3---->c2t0d0
/dev/vg03/lvol4---->c2t0d0
#vgexport vg03 /vg03.map
--> I exported the VG using vgexport and created the file vg03.map
SERVER2:-
I copied the file vg03.map from the server1.
I physically attached the disk to the SERVER2 as c5t0d0
NOTE:In my server2 there is already a VG named VG03 exist.
My Query:-
1. If I go for vgimport it will do any impact on my current VG03..?
2. How can I mount the disk that I attached and access the Logical Volumes..?
Expecting the reply soon.....
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2006 07:41 PM
06-25-2006 07:41 PM
Re: VG Mounting & LV Access
mount /dev/vg04/lvol1 /my_mount_point
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2006 07:47 PM
06-25-2006 07:47 PM
SolutionCreate directory and group special file on server2
# ll /dev/*/group
pick a free minor number
# mkdir /dev/vg04
# mknod /dev/vg04/group c 64 0x040000
# vgimport vg04 /dev/dsk/c5t0d0
# vgchange -a y vg04
# vgcfgbackup vg04
Create mountpoints and test.
# mkdir /test1
# mount /dev/vg04/lvol1 /test1
# cd /test1
# ls -la
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2006 07:47 PM
06-25-2006 07:47 PM
Re: VG Mounting & LV Access
In the SERVER2:-
#
#
#
#
#
#
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2006 07:48 PM
06-25-2006 07:48 PM
Re: VG Mounting & LV Access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2006 07:51 PM
06-25-2006 07:51 PM
Re: VG Mounting & LV Access
that is
#vgimport -m /vg03.map vg04 /dev/dsk/c5t0d0
Regards
Jay