- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- IGNITE tape voor all VG's
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
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
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
тАО08-27-2004 02:35 AM
тАО08-27-2004 02:35 AM
How can i make a IGNITE TAPE to cover all my VG's.
I have box with 3 vg's.
Root vg00 ( 2 disk mirror)
data vg01 ( 2 disk mirror)
data vg02 ( 2 disk mirror)
Before i start to make this tape i wil shutdown all databases
Thank you in advance
Idriz
P.S. it is a great feeling to have a such tape
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2004 02:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2004 02:42 AM
тАО08-27-2004 02:42 AM
Re: IGNITE tape voor all VG's
If that's *all* the VGs it would be as follows:
make_tape_recovery -Ivx inc_entire=vg00 -x inc_entire=vg01 -x inc_entire=vg02
Assuming your tape dev is /dev/rmt/0mn - else you'd also need
-a /dev/rmt/Xmn
where X=tape instance #
NTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2004 02:42 AM
тАО08-27-2004 02:42 AM
Re: IGNITE tape voor all VG's
the -x options is for that.
make_tape_recovery -x inc_entire=vg00 -x inc_entire=v01 -x inc_entire=vg02 -v -I -a /dev/rmt/0mn
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2004 02:47 AM
тАО08-27-2004 02:47 AM
Re: IGNITE tape voor all VG's
Just a caution - that's not really the intent of make_tape_recovery. Ignite make_tape_recovery is supposed to be just that - a recovery tool to get your system back up quickly by booting of the tape and reloading your root volume: vg00. From there you would use conventional backup/restore products to recover the rest of your data. Make_tape_recovery does not provide any of the niceities of more sophisticated backup products such as incremental backups, easy restore of individual files/directories, etc.
I would strongly suggest that you use make_tape_recovery just for vg00 and the backup the rest of your data using conventional means.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2004 02:48 AM
тАО08-27-2004 02:48 AM
Re: IGNITE tape voor all VG's
CMD="make_tape_recovery"
for VG in `/usr/sbin/vgdisplay | grep "VG Name" | cut -d\/ -f3`
do
CMD=$CMD" -x inc_entire=$VG "
done
CMD=$CMD" -v -I -a /dev/rmt/0mn"
$CMD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2004 06:22 AM
тАО08-27-2004 06:22 AM
Re: IGNITE tape voor all VG's
That being said, it is very important NOT to make a recovery tape with multiple VGs. The MOST common use of a backup tape is to recover a few files or perhaps a directory. make_tape_recovery is designed ONLY to erase all the disks and reinstall. If your system uses LVM mirroring, you must manually configure this after reloading.You must always interact during the reload to make sure the right disks are being defined in VG00, especially with mirroring. And make_tape_recovery cannot save any files larger than 2Gb.
True, you can play with the mt command to position the tape and use pax to restore some files but that is incredibly slow compared to fbackup. The strategy should be:
1. Download the latest version of Ignite/UX.
2. Run make_tape_recovery during a quiet time on the system.
3. Use fbackup to backup all files and directories for fast restores.
Bill Hassell, sysadmin