- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- br_backup won't re-use LTO
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
06-13-2003 04:50 AM
06-13-2003 04:50 AM
My automated backup on an 11i system is failing with the following error:
fbackup(1004): session begins on Thu May 29 04:00:00 2003
fbackup(1517): /net not backed up - 'n' option (NFS) not specified
fbackup(3203): volume 1 has been used 100 time(s)
fbackup(3204): volume used more than maximum, do you want to use this volume anyway?
fbackup(3004): writer aborting
fbackup(1002): Backup did not complete : Reader or Writer process exit
My solution is to use fbackup with the -y flag to answer "Yes" to all inquiries. However, I don't particularly want to edit the br_backup script, as a patch or upgrade will overwrite. I notice br_backup passes $hidden_option to fbackup, but cannot see where it is set.
Any ideas? Or should I just bite the bullet and edit the script?
Thanks in advance
Dave
PS - I need to use the tape more than 100 times, because LTO tapes are costing me around $200 each!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 04:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 04:53 AM
06-13-2003 04:53 AM
Re: br_backup won't re-use LTO
One solution is to copy the script and edit the copy. Then use this "custom" script for your backup jobs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 04:56 AM
06-13-2003 04:56 AM
Re: br_backup won't re-use LTO
Also, I just remembered, that you can define the 'maxvoluses' in the 'config' file used by 'fbackup'. The default value is 100 which would apply in the absence of any configuration file (bad). See the man pages for 'fbackup' for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 05:05 AM
06-13-2003 05:05 AM
Re: br_backup won't re-use LTO
Create a configuration file called config in the directory /var/adm/fbackupfiles
Inset in it the line
maxvoluses NUMBER_OF_TIMES_YOU_WANT
then call fbackup with the option
-c /var/adm/fbackupfiles/config.
For other specs, have a look at man page.
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 05:16 AM
06-13-2003 05:16 AM
Re: br_backup won't re-use LTO
One more comment. If you are not using a 'config' file with 'fbackup' you are going to get very poor backup performance.
In the absence of an explicit configuration file ('-c config'), default values are provided for the 'fbackup' (and any subsequent 'frecover' session. See the 'fbackup' man pages). These defaults are archaic A better set of parameters look something like these:
blocksperrecord 256
records 32
checkpointfreq 1024
readerprocesses 6
maxretries 5
retrylimit 5000000
maxvoluses 200
filesperfsm 2000
These parameters are recorded onto the actual backup tape and are thus used for a 'frecover' session too.
Checkpoint records allow the salvage of a backup when a bad tape spot is detected, since the records contain information about the file being backed up. The 'filesperfsm' parameter controls the frequency with which Fast Search Marks (FSM) are written. Both checkpoint and FSM records affect performance. FSMs take a tape drive out of streaming mode thereby adding to backup time. Conversely, however, FSM???s improve the time it take to recover a file from tape.
In general, if your backup consists of a high proportion of small files, increase the value for 'filesperfsm'. If your backup consists of a high proportion of large files, then decrease the 'filesperfsm' value.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 05:27 AM
06-13-2003 05:27 AM
Re: br_backup won't re-use LTO
br_backup actually creates a fbackup_config file in /etc/sam/br with the default values in it if none exists alreadu - so it actually does use a config file.
I just modified this file & set maxvoluses to 1000.
Thanks everyone.
Dave