- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Verify make recovery
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
05-02-2005 08:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 09:01 PM
05-02-2005 09:01 PM
Re: Verify make recovery
Insert the Ignite tape
#mt -t /dev/rmt/0mn fsf 1
# tar -tvf /dev/rmt/0m filename > /tmp/a.out
Will list the contents into a.out file.
You can also check the log file to verify that the backup was complete
/var/opt/ignite/logs/
you can also use the copy_boot_tape to creat another tape and if its successful, it means that your backup is fine.
REgards,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 09:05 PM
05-02-2005 09:05 PM
Re: Verify make recovery
check /var/opt/ignite/logs/makrec.log1 and scroll to the end of the log to verify if the last make recovery was completed or "Ended Unsuccessfully".
however, u should really be using make_tape_recovery.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 09:36 PM
05-02-2005 09:36 PM
Re: Verify make recovery
if (( $(tail -1 ${LOGFILE} |egrep -c 'successfully') != 1 ))
then
# Send an email
/usr/bin/mailx -m -s "${SUBJECT}"
Hi,
< Your error message >
This email message was created automatically by UNIX
EOF
fi
This will send you an email of something went wrong
Cheers,
Renarios
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 09:41 PM
05-02-2005 09:41 PM
Re: Verify make recovery
From syslog I can find the successfull message but how to verify the content of the tape ?
Can tar -tvf view the content of the make recovery tape ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 09:42 PM
05-02-2005 09:42 PM
Re: Verify make recovery
Before that you have to point the tape ahead of the LIF/BOOT area.
#mt -t /dev/rmt/0mn fsf 1
skips the header
# tar -tvf
Regards,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 09:45 PM
05-02-2005 09:45 PM
Re: Verify make recovery
try this to verify:
# mt -t /dev/rmt/0mn rew
# mt -t /dev/rmt/0mn fsf 1
# tar tvf /dev/rmt/0mn
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2005 01:33 AM
05-03-2005 01:33 AM
Re: Verify make recovery
To verify a recovery tape you must first ensure that you have craeted the recovery tape with -C option
ie. make_recovery -C
If you have used this you can use
check_recovery
Hope this helps
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2005 08:56 PM
05-03-2005 08:56 PM
Re: Verify make recovery
$mt -t /dev/rmt/0m rew
$mt -t /dev/rmt/0m fsf 1
$tar -tvf /dev/rmt/0mb
Tar: blocksize = 4
directory checksum error
$ mt -t /dev/rmt/0m status
Drive: HP C1537A
Format: DDS-1 format
Status: [41111300] BOT online compression immediate-report-mode
File: 0
Block: 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2005 09:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2005 09:07 PM
05-03-2005 09:07 PM
Re: Verify make recovery
I noticed you are using /dev/rmt/0m
which is rewinding device try to use non-rewindoing device /dev/rmt/0mn
# mt -t /dev/rmt/0mn fsf 1
# tar tvf /dev/rmt/0mn
Regds
TT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2005 09:09 PM
05-03-2005 09:09 PM
Re: Verify make recovery
hmm, i think u did not follow the commands i gave exactly and forgot 0mn as the device file.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2005 09:10 PM
05-03-2005 09:10 PM
Re: Verify make recovery
Try /dev/rmt/0mn instead of /dev/rmt/0mb after rewinding and forwarding space count.
tar tvf /dev/rmt/0mn
Regards,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2005 09:18 PM
05-03-2005 09:18 PM