- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- System back up enquiry
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
тАО02-11-2003 09:01 PM
тАО02-11-2003 09:01 PM
How can I get more information about this ?
thanks in advance !!
Cat
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-11-2003 09:19 PM
тАО02-11-2003 09:19 PM
SolutionDepending on the size of the system you have will determine what backup you should use.
Generally speaking creating an ignite tape is sufficient for your OS (/dev/vg00). If your system is quite small you can use ignite to do all of it, if it fits onto a single tape.
To create an ignite tape assuming /dev/vg00 only
# /opt/ignite/bin/make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn (assuming your using /dev/rmt/0m device, also you must use the no-rewind device.)
To create an fbackup archive
# fbackup -i /my_otherfilesystem -f /dev/rmt/0m
You can get additonal information on ignite from here:
http://www.docs.hp.com/hpux/onlinedocs/B2355-90750/B2355-90750.html
Latest ignite software from here:
http://www.software.hp.com/products/IUX/download.html
If you have a database or two you need to be a little more cautious on what tools are used.
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-11-2003 09:25 PM
тАО02-11-2003 09:25 PM
Re: System back up enquiry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-11-2003 09:31 PM
тАО02-11-2003 09:31 PM
Re: System back up enquiry
make_tape_recovery is designed for disaster recovery and shouldn't replace a daily backup schedule. Although it is possible to extract files from the archive some find it best to keep it separate from their backup strategy.
hope this helps
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-11-2003 09:32 PM
тАО02-11-2003 09:32 PM
Re: System back up enquiry
You should be using both of them.
1. Ignite will help you to quickly restore the OS. Prepare a make_tape_recovery image once every month and before you make any change to the system.
This is an additional software available free of charge from HP.
http://www.software.hp.com/products/IUX/faq.html
2. You can use fbackup to selectively restore the data. This will help you during accidental deletions of files. fbackup will allow you to do full backup and incremental backups as well. So, you may want to take a full backup of the system once every week and incremental everyday. You can decide how you want to do it based on the criticality. However if you are using the database, backing up db* files will be of no use. You will need to export the database and take a backup of it.
Look at fbackup and frecover man pages.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-11-2003 09:34 PM
тАО02-11-2003 09:34 PM
Re: System back up enquiry
You can use either ignite or fbackup method.
to backup using ignite
# /opt/ignite/bin/make_tape_recovery -I -v
-a /dev/rmt/0mn (assuming /dev/rmt/0m is the tape device)
fbackup archive:
# fbackup -i /
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2003 12:35 AM
тАО02-12-2003 12:35 AM
Re: System back up enquiry
Like everbody said, you need the ignite recovery tape to be done before you change your system configuration and after changing it.
to get the tape drive:
#ioscan -funC tape
to backup using the ignite utiliy:
make_tape_recovery -I -v -x inc_entire=vg00
use the one ends with
Also, take a Daily/Weekly backup using fbackup or tar.
I'm using the tar command which is the GNU version and supports more than 2GB.
#tar -cv /mydata1/* /mydata2/* etc..
to restore
#tar -xv *
I have enclosed a simple script which might help. You can customize it with any backup command you wish to use.
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2003 12:36 AM
тАО02-12-2003 12:36 AM