- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fbackup error-codes
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-13-2000 01:42 AM
09-13-2000 01:42 AM
I'm creating a simple filter script for checking fbackup results and need a list of error-codes, such as tape full, write error etc.
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2000 01:47 AM
09-13-2000 01:47 AM
Re: fbackup error-codes
From document #KBRC00000151.
"fbackup returns the folowing error values:
0 upon normal completion
1 if it is interrupted but allowed to save its state for possible restart
2 if any error conditions prevent the sessions from completing.
4 if any warning conditions are encountered.
If warnings occur, then the operator should verify the fbackup logs to justify the sanity of the backup taken.
The most common cause of an exit code of 4 is the use of a new tape. When fbackup begins on a new tape, it recognizes this and gives a warning as it generates the proper tape headers. In this case, the exit code 4 can generally be assumed to be a success."
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2000 01:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2000 01:59 AM
09-13-2000 01:59 AM
Re: fbackup error-codes
use Simply
#fbackup
Thanks & Regards
R.Suresh
r_sures@yahoo.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2000 02:20 AM
09-13-2000 02:20 AM
Re: fbackup error-codes
The script i use is similar to the br_backup script of SAM i.e. it creates the backup and sends the output from fbackup to a specified e-mail address.
The filter i made scans this e-mail for the specific error codes like #3003 (tape full).
What i would like is a list of these codes.
Greetz Danny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2000 02:31 AM
09-13-2000 02:31 AM
Re: fbackup error-codes
Dont know of a master list for fbackup but heres a few we commonly get;
fbackup(3013): WRITE ERROR while writing data record, at media record
(Media error or it also could mean tape is full)
fbackup(3038): output file /dev/rmt/1m is not a valid device file for backup (no tape)
fbackup(3032): could not open output file /dev/rmt/4m (no tape)
fbackup(3003): normal EOT (Tape is full)
fbackup(3040): output file /dev/rmt/1m encountered an I/O error (no tape)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2000 02:39 AM
09-13-2000 02:39 AM
Re: fbackup error-codes
dumpmsg /usr/lib/nls/C/fbackup.cat | more
Greetz Danny.