- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup with tape changer
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
02-01-2007 11:23 PM
02-01-2007 11:23 PM
I recently bought a DDS tape changer from HP (DAT72 x 6), and I am still using "fbackup" for all our backup necessities.
From the fbackup man page, I learn that "Both DLT and DDS autochangers and libraries can provide unattended backups": ok, fine.
But the problem is, how can I change the tape through "fbackup" ?
Sorry for the trivial question.
Thank you
Enrico
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 11:34 PM
02-01-2007 11:34 PM
Re: fbackup with tape changer
have you looked at these patches:
HP-UX 11.00 (PA-RISC): PHKL_29898
HP-UX 11.11 (11i V1 PA-RISC): PHKL_29899
HP-UX 11.23 (11i V2 IA-64) : PHKL_29900
HP-UX 11.11 PHKL-33425
Please also see:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1041825
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 11:43 PM
02-01-2007 11:43 PM
Re: fbackup with tape changer
After that I can tell fbackup to go on with its work: I simply wonder that "fbackup" can change the tape by itself, or through an external program.
All that, if I understand correctly the word "unattended" reported by the man page ..
Thank you
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 11:53 PM
02-01-2007 11:53 PM
Re: fbackup with tape changer
in that case
see man fbackup , look for chgvol
If you search ITRC archive with
"fbackup chgvol"
Please see:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=111261
and James's answer in:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=11701
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=225349
and many others.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 02:13 PM
02-02-2007 02:13 PM
Solutionblocksperrecord 4096
records 64
checkpointfreq 4096
readerprocesses 6
maxretries 5
retrylimit 5000000
maxvoluses 200
filesperfsm 2000
By using this config file, you should see a significant reduction in the backup time.
One of the options in the config file is the keyword chgvol which defines a script that you must write. The script will use the environment variable $LIBRARY to define the changer's device file. Creating this device file is very dependent on the version of HP-UX you are using.
Next, you become familiar with the mc command to manipulate the changer. Now it sounds simple to switch tapes but there are no assumptions. So your script must unload the tape and place it in an unused slot. Then it must select the next tape and load it into the changer. So far, so good. But if your backup needs 3 tapes, the same script will be called and you can't unload the tape into the first slot. So the script needs stored logic in the form of a status file that keeps track of what is happening.
So the script can't assume anything -- it will be run every time fbackup runs out of tape and needs another volume. The script also should be initialized prior to the start of fbackup so the desired first tape is loaded (and no unknown tape was left in the changer).
So you'll need some scripting skills to handle all the possible conditions. The script's requirements would then be integrated into your current backup script.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 08:49 PM
02-02-2007 08:49 PM
Re: fbackup with tape changer
For the next persons that will read these messages, the right switches of the fbackup command are:
-f [device file]
-c [configuration file]
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 10:01 PM
02-02-2007 10:01 PM
Re: fbackup with tape changer
Thank you again