- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Fbackup warnings/errors.
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
03-20-2006 02:56 AM
03-20-2006 02:56 AM
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
fbackup(9999): Interrupted system call
fbackup(2004): WARNING: reader 1: 1st read error, firstread=196608, n=0
This happened for the first time last night and I'm concerned about the integrity of the backup. The backup normally takes 1.5 hours but this time took 4 hours.
It looks to me like it might be a system setting being breached but there's nothing in the syslog or dmesg to indicate this. The disks are on an EMC unit and we've had these checked out too - they've been given the all clear.
We do backup a lot of small files on this system ( not sure how many but 10,000s ) - is there a setting that controls this maybe?
Can anyone out there help/shed some light on what's going on?
TIA.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 03:06 AM
03-20-2006 03:06 AM
Re: Fbackup warnings/errors.
9 times out of 10 a bad disc
It cannot read the file on disc to backup
Thus HW check
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 03:07 AM
03-20-2006 03:07 AM
Re: Fbackup warnings/errors.
have a read of:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=943856
Sadly no clear solution.
Causes can be disk/memory/tape.
Others have suggested a re-boot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 03:22 AM
03-20-2006 03:22 AM
Re: Fbackup warnings/errors.
You are right to be concerned abou thte backup. Its useless.
Some of the files/filesystems scheduled for backup wer not available.
Probably bad disk.
Check with dmesg
xstm or cstm or mstm
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 03:51 AM
03-20-2006 03:51 AM
Re: Fbackup warnings/errors.
As I'm not getting any errors could I put it down to a 'one off'? or, in your experiences, does this error keep occurring?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 12:50 PM
03-20-2006 12:50 PM
SolutionAs far as a disk error, normally these would be logged in syslog.conf, but just to verify your disks, use dd to read the sectors, something like this:
dd if=/dev/rdsk/whatever of=/dev/null bs=128k
Note the use of rdsk, not dsk, which improves throughput for the dd command. Repeat for each disk on the system. You can also run it for specific lvols (use the rlvol name) but using the raw disks makes for less commands to run. dd will stop with errno 5 (I/O error) if a sector cannot be read.
There is no limit to the number of files that can bed backed up (millions are not a problem), but you can significantly improve fbackup's speed by max'ing the number of reader processes to 6 and adjusting the files per setmark and other values. You should always use a config file with fbackup (-c option). Here is a good example:
blocksperrecord 8192
records 64
checkpointfreq 4096
readerprocesses 6
maxretries 5
retrylimit 5000000
maxvoluses 200
filesperfsm 2000
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 08:58 PM
03-20-2006 08:58 PM
Re: Fbackup warnings/errors.
The following night's backup completed sucessfully and without any of the warning re-appearing. I think that, for now, I'll just keep an eye on it. Should it re-occurr I'll implement some of the fbackup suggestions you've made.
thanks again.