- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Minimizing system downtime for the 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
09-27-2000 08:23 AM
09-27-2000 08:23 AM
I consider an idea of making backup of single partitions to a hard disk, and then
writing the files to tapes when the system is on-line. I guess "fbackup" and "dd" commands can be used for this purpose.
Thank you in advance for any comments!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 08:36 AM
09-27-2000 08:36 AM
Solutionwhy don't you split the file system / raw logical volume ( before you do this you need to stop the application) and then restart it
backup the data using ( dump for hfs file system) or vxdump for vxfs )
and then re-merge the split filesystems/Raw
volumes .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 08:37 AM
09-27-2000 08:37 AM
Re: Minimizing system downtime for the full backup
Without doing anything else, you can reduce the time to do a backup with fbackup by half by making the following modifications:
1) If it doesn't already exist, create file /etc/sam/br/fbackup_config
2) In this file, make sure the following parameters have the following values:
blocksperrecord 128
checkpointfreq 256
(the defaults were 32 and 32)
3) If you use SAM to do your backups, it should use this file automatically. If you use fbackup from the command line, be sure to use the -c option, and specify the full path to fbackup_config.
Cheers,
Bruce Laughlin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 09:12 AM
09-27-2000 09:12 AM
Re: Minimizing system downtime for the full backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 09:25 AM
09-27-2000 09:25 AM
Re: Minimizing system downtime for the full backup
- Purchase MirrorDisk/UX if you don't have it already, mirror your data volumes then use lvsplit/lvmerge as suggested by Devbinder above to split off a copy which can be backed up at your leisure.
- Create a large enough filesystem on your spare diskspace then use a standard backup utility such as dump or vxdump to backup your required filesystems to this. Personally, I never use fbackup but you could probably use it as well. I would only use dd to copy raw volumes. You can backup this filesystem to tape later.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 09:29 AM
09-27-2000 09:29 AM
Re: Minimizing system downtime for the full backup
1. If you mirror your disk's file systems you could lvsplit your mirror, do a static backup, and lvmerge the mirrors.
2. If an Oracle database is involved, consider doing hot backups (of the database).
3. If you have Online JFS, consider doing a snapshot backup (see document #HPUXKBRC00001372 for more details).
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 11:44 AM
09-27-2000 11:44 AM
Re: Minimizing system downtime for the full backup
1. Once a week, backup any file unmodified for 6 months or more ("old" files). Exclude these files from all further backups. This is done during the day.
2. Off hours, daily, backup the remainder - however:
Monday back up file system A in full
and B,C,D get incrementals (only backup
the files modified since the last full
backup for that particular system.
Tuesday back up file system B in full
and A,C,D get incrementals....
Wednesday backup file system C in full
and A,B,D get incrementals....
And so on.
Restoring properly takes some head-scratching as you need to restore from more than one tape to get a full restore of any one file system. But it reduces tape space, and therefore backup time.
Fred
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 03:27 PM
09-27-2000 03:27 PM
Re: Minimizing system downtime for the full backup
My suggestion would be that if you are utilising multiple backup tapes as you indicate, that DDS may no longer be a suitable backup option for you - unless of course you might consider getting additional units etc (make sure you consider the seperation of I/O paths etc.) Otherwise, take a good look at what you really need to backup / restore. Do you need to back up all of your system areas daily? Perhaps you can back these up once a week? Depending on the environment, (production v dev) you may be able to do hot backups of databases and ensure that you have a good strategy for moving DB logs to tape instead.
Whatever you decide, make sure that is supported by good process and procedures.
Cheers,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 03:46 AM
09-28-2000 03:46 AM
Re: Minimizing system downtime for the full backup
A view from DDS side:
- Am i reciving data as fast as i like?
- Is the compresion rate good or am i writting uncompressed?
- Are tapes adecuated to drive?
- Are tapes in good status?
Compile the attached file and run it after each backup command. This file is full statistics from drive and tape.
usage is dat3 /dev/rmt/xmn > res_x
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 04:23 AM
09-28-2000 04:23 AM
Re: Minimizing system downtime for the full backup
The attached file.
If not here it is in
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x979ee8644a22d411ade70090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 08:39 AM
09-28-2000 08:39 AM
Re: Minimizing system downtime for the full backup
I will consider splitting mirrors and better information selection policies. On the other hand, I believe that disconnected mirrors are in less consistent state than a stopped system. The worst thing is using of recovered files that were backed up in different times.