- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem writing to remote tape device with fbackup
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
07-02-2008 09:59 AM
07-02-2008 09:59 AM
I am having a problem trying to write to a remote device within the FBackup utility in SAM on an HP-UX 10.20 system. The error message that I receive is the following:
fbackup(3301): could not open output file 132.183.20.143:/dev/rmt/0mnb
I have stopped and restarted the remote tape device, as well as rebooted the remote hp-ux 10.20 workstation. Additionally I am using a known-good tape, dlt, in the remote device.
Prior to my replacing the drive itself, is there anything else I can try to get backups to work? Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2008 10:08 AM
07-02-2008 10:08 AM
Solutionfbackup -i /some/files -f /dev/rmt/0m
(not sure why you are using no rewind device driver )
Then try manually using remote host device.
fbackup -i /some/files -f remotehost:/dev/rmt/0m
I believe you must properly configure remsh from serverA to serverB in order to use the rmt abilities.
I do not use remote tape devices as most attempts have been fruitless and a waste of time ( performance is extremely poor ).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2008 02:48 PM
07-02-2008 02:48 PM
Re: Problem writing to remote tape device with fbackup
Thanks for your reply. I ran an interactive backup on the workstation where the tape drive was locally attached, and the backup went by without a problem.
You mentioned the need for remsh to be configured properly. What file(s) and setting(s) do I need to modify in order for it to work? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2008 04:42 PM
07-02-2008 04:42 PM
Re: Problem writing to remote tape device with fbackup
132.183.20.143
remhost
remhost.mydomain.com
The reason for several names and IP is to make sure that something matches your local machine's name as seen by the remote system. Once .rhosts is in place, test it with something like this:
remsh remhost date
It should return the date on the remote system. Now fbackup should work OK. Some notes about network backups:
- A 10 Mbit link is far too slow for tape backups. The minimum is 100 Mbit unless you are using very old reel-to-reel tape drives. For a remote DLT 8000, you may find the network is still too slow and overall throughput may be 1/5 to 1/10 normal speed due to data underruns.
- A network restore with frecover will not be able to do a high speed search for files (hours rather than minutes to recover a file).
- The remote system cannot be used to cold install your local system. You'll need a bootable HP-UX system running on the local system before you can recover any files from the tape. For a cold install (ie, a failed boot disk), you'll need to use Ignite/UX network backup which can indeed recover you local system onto a new disk.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2008 08:46 AM
07-03-2008 08:46 AM
Re: Problem writing to remote tape device with fbackup
Thanks for your help. Once I added the local host to the .rhosts file on the remote system, the backups succeeded.