- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: make_recovery error
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-28-2002 03:58 AM
03-28-2002 03:58 AM
make_recovery error
I am trying to make an ignite tape using the ignite-ux "make_recovery" command. The complete command reads as "make_recovery -A -v -C -d /dev/rmt/0m".
The process starts off well but terminates within a minute with the following message: "Call to system failed. errno=0 Cleanup"
Is there anyone who can help?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 04:04 AM
03-28-2002 04:04 AM
Re: make_recovery error
You are using an older version of ignite, download and install the latest version.
http://www.software.hp.com/products/IUX/download.html
/opt/ignite/bin/make_tape_recovery -x inc_entire=vg00 -I -v -a /dev
rmt/
Will cover your entire vg00
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 04:04 AM
03-28-2002 04:04 AM
Re: make_recovery error
Read this thread:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x041b8ffa98a2d5118ff10090279cd0f9,00.html
The author claims it was resolved after a reboot. I have no idea as to why, but what the hell, its worth a shot, even though it's brutal.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 04:11 AM
03-28-2002 04:11 AM
Re: make_recovery error
Even with later versions you are still able to use make_recovery.
I would check the /var/opt/ignite/logs/ directory for logging.
for example: makrec.log and see if something is more explained than the error itself.
Might have something to do with lvm problems.
Might be important to solve these problems first.
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 05:21 AM
03-28-2002 05:21 AM
Re: make_recovery error
The errno=0 is non-specific and very early in the make_recovery process. It is just testing an exit status (waitpid). My guess is the real cause of your problem is the /dev/rmt/0m. This is an invalid device for make_recovery to use. If you run lssf you would see something like:
# lssf /dev/rmt/0m
stape card instance 1 SCSI target 0 SCSI LUN 0 at&t best density available at address 8/16/5.0.0 /dev/rmt/0m
Note that this device is NOT a no-rewind device that is required by make_recovery (make_tape_recovery).
# lssf /dev/rmt/0mn
stape card instance 1 SCSI target 0 SCSI LUN 0 at&t no rewind best density available at address 8/16/5.0.0 /dev/rmt/0mn
This is because make_recovery works in 2 distinct steps.
1. It copies the LIF onto the tape using dd which allows you to boot from the tape.
2. It then creates the archive on the tape for restoring the system.
If a "rewind" device is used then the LIF would be applied, the tape would rewind and the archive would then overwrite the LIF making the tape unusable.
Try your command again using a no rewind device. I do agree with Paula that you should upgrade and use the make_tape_recovery command simply because there are other enhancements and features available.
Thanks for participating in the forums.
Martin