- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Best way to do a full backup
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
08-31-2005 09:14 PM
08-31-2005 09:14 PM
Best way to do a full backup
We need to recrate lvm structure on other disks.
The customer is using large files, and oracle and he may do a full backup before. I think that tar utility in not a good command when using large files, can we use for example fbackup/frecover to do the backup and restore?
If yes, we need all option for those commands to restore the data.
If not what is the best way to do it.
Best regards
Omar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 09:19 PM
08-31-2005 09:19 PM
Re: Best way to do a full backup
If you choose gtar, it's here:
http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.15/
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 10:11 PM
08-31-2005 10:11 PM
Re: Best way to do a full backup
Yes, fbackup + frecover is an option to backup and restore the files. All you have to do to check the available option is
man fbackup
man frecover
There is no better document than the man pages.
With regards,
Mohan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 10:19 PM
08-31-2005 10:19 PM
Re: Best way to do a full backup
http://docs.hp.com/en/5187-0151/ch01s11.html
http://docs.hp.com/en/B2355-90681/fbackup.1M.html
http://docs.hp.com/en/B2355-90681/frecover.1M.html
You can also use make_tape_recovery with the options "-x inc_entire=vgname" to include all VGs you want
Then the recovery is doable rebooting with installation CD and then recovery from tape.
Rgds,
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 02:12 AM
09-01-2005 02:12 AM
Re: Best way to do a full backup
Sounds like you are migrating the db to new disks?
You could use vxdump/vxrestore for that like so:
vxdump -0 -f - -s 1000000 -b 16 /oracle | (cd /zmnt/oracle ; vxrestore rf -)
where zmnt is a temporary place to mount your new disks.
You will have to build your lvm structure manually first, then mount the "new" disks under say /zmnt/
db must be down for this.
after the copy is finished, unmount both the old and new, make a backup of /etc/lvmtab, then edit /etc/lvmtab and point the mounts to the new disks.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 02:22 AM
09-01-2005 02:22 AM
Re: Best way to do a full backup
An obvious (sometimes not so obvious...) remind is that you can't use tar, fbackup, gtar or something similar to backup you Oracle DB on-line.
Check that with your DBAs, one month ago in Lisbon a server crashed in the main hospital of the city and when they wanted to restore from backups, all DB backups where made on-line with tar. It was caos!
Enjoy :)
Pedro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 02:35 AM
09-01-2005 02:35 AM
Re: Best way to do a full backup
fbackup -0 -f /dev/rmt/c?t?d?BEST -I /tmp/index -v
0 = Or "1" - (0 = full, 1 = incremental)
f = Device file to use
I = Directory to place index
v = Verbose
Other option is to use GNUtar
available @ http://www.gnu.org/software/tar/
Regards,
Syam