Operating System - HP-UX
1836561 Members
1834 Online
110102 Solutions
New Discussion

Re: Error when performed make_net_recovery

 
SOLVED
Go to solution
take2mir
Advisor

Error when performed make_net_recovery

Hi,
I just ran make_net_recovery. Everythings goes fine till this error came out:

Program Terminated. SIGHUP received. Exiting.


======= 01/05/08 10:37:43 SST make_net_recovery completed unsuccessfully

ERROR: SIGHUP has caused the termination of make_sys_image. The archive
being created will be incomplete. As result, the archive cannot
be used for recovering the system. If running this command in the
unstable network connection, you may consider running it in the
background using nohup (1M) to allow it to continue to completion
even if your network connection drops.

From the error it said it because of the unstable connection. How should I use nohup command for this make_net_recovery process?

Thanks in advance
5 REPLIES 5
Mridul Shrivastava
Honored Contributor
Solution

Re: Error when performed make_net_recovery

can use like the following:
cd /tmp
nohup &

This will run the process in the background so even if ur network connection drops it will continue.

u can monitor nohup.out under /tmp for the progress and errors if any.
Time has a wonderful way of weeding out the trivial
take2mir
Advisor

Re: Error when performed make_net_recovery

Thanks miridul.. But how about I log out from the client server? Is this process still going on?
Mridul Shrivastava
Honored Contributor

Re: Error when performed make_net_recovery

yes this process will continue till it completes even if you logout?

same u can confirm by opening another session and grep for make_net_recovery
Time has a wonderful way of weeding out the trivial
Mridul Shrivastava
Honored Contributor

Re: Error when performed make_net_recovery

yes this process will continue till it completes even if you logout?

same u can confirm by opening another session and grep for make_net_recovery in the ps o/p.
Time has a wonderful way of weeding out the trivial
take2mir
Advisor

Re: Error when performed make_net_recovery

Thanks mridul for the answer