- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mounting Snapshot Disk on other HP-UX System
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
05-22-2006 04:23 AM
05-22-2006 04:23 AM
Currently were taking backup using Data Protector 5.5. It is doing the SnapShot of the HP-UX disk in the SAN storage (EVA5000).We are taking the> backup from this snapshot disk.
My question is can i mount this snapshot disk on another HP-UX server and access the data from this disk. since backup/restoration is taking long time. i thought i can mount this snapshot disk on another test HP-UX server in case of emergency to save time.
Can this be done?
Are is there anyother faster way of doing this.
Thanks
Srikanth
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 04:57 AM
05-22-2006 04:57 AM
Solutionhttp://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1000416
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 05:57 AM
05-22-2006 05:57 AM
Re: Mounting Snapshot Disk on other HP-UX System
This is what we do in our production environment for our backups.
We bring down our production volumes, snapclone, bring up our production volumes, then mount the snapclones on our backup server, then perform backups on our snapclones.
This process works very well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 06:00 AM
05-22-2006 06:00 AM
Re: Mounting Snapshot Disk on other HP-UX System
Thanks for your reply.Can you tell me detail how you do it on another HP-UX server.The steps involved in mounting the snapclone device.and also what precautions i need to take on this.Can you explain me in detial.
Thanks
srikanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 06:15 AM
05-22-2006 06:15 AM
Re: Mounting Snapshot Disk on other HP-UX System
If you will follow Ivans link, it will show how to mount the disks to the alternative server. As he said as well, you do not need to do the vgchid on the volume group.
Once you get the volume group snapclones mounted on the alternative server, you can run your backups against it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 09:35 AM
05-22-2006 09:35 AM
Re: Mounting Snapshot Disk on other HP-UX System
on system where clone disk are first do:
vgexport -v -p -s -m /etc/lvmconf/vgoracle.smap vgoracle
vgexport -v -p -m /etc/lvmconf/vgoracle.map vgoracle
next copy map files to other system.
make sure other system can see clone disk.
then do following steps:
vgchange -a n vgoracleBC
vgexport -v -m /dev/null vgoracleBC
mkdir /dev/vgoracleBC
mknod /dev/vgoracleBC/group c 64 0x120000
vgimport -v -m /etc/lvmconf/vgoracleBC.map /dev/vgoracleBC /dev/dsk/c15t2d4 /dev
/dsk/c15t2d5 /dev/dsk/c15t2d6
vgchange -c n /dev/vgoracleBC
vgchange -a y /dev/vgoracleBC
fsck -F vxfs -y /dev/vgoracleBC/rlvol1
mount /dev/vgoracleBC/lvol1 /ora1db01BC