- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mount volume group from SAN
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
01-22-2008 09:42 PM
01-22-2008 09:42 PM
I reinstalled HP-UX on my server. There is one volume group from SAN that is mounted on it previously. Although I dont really need to recover it, I just want to know how could I mount it back to the server?
Thanks!
-jef
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2008 10:02 PM
01-22-2008 10:02 PM
Solutionhi ;
if you know the devices in that volume group then you can imprt by vgimport , like ,
mkdir /dev/vgtest ( any directory for vg )
mknod /dev/vgtest/group c 64 0x0?0000 ( any unused group minor number , you can look at minor numbers by ll /dev/*/group )
vgimport /dev/vgtest /dev/dsk/c?t?d? /dev/dsk/c?t?d?
if you have a map file then last step is more easy like
vgimport -v -s -m mapfile vgtest
Hasan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2008 11:59 PM
01-22-2008 11:59 PM
Re: mount volume group from SAN
I got this error.
# vgimport /dev/vg20 /dev/dsk/c4t0d0 /dev/dsk/c8t0d0
vgimport: Cannot open the control file "/dev/vg20/group":
No such device
c4t0d0 and c8t0d0 are mirrored and contains the volume group on the SAN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 02:15 AM
01-23-2008 02:15 AM
Re: mount volume group from SAN
# vgimport /dev/vg20 /dev/dsk/c4t0d0 /dev/dsk/c8t0d0
vgimport: Warning: Volume Group contains "1" PVs, "2" specified. Continuing.
Warning: A backup of this volume group may not exist on this machine.
Please remember to take a backup using the vgcfgbackup command after activating the volume group.
What is the next step guys?
Thanks!
-jef
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 10:13 PM
01-23-2008 10:13 PM
Re: mount volume group from SAN
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 10:39 PM
01-23-2008 10:39 PM
Re: mount volume group from SAN
Thanks!