Operating System - HP-UX
1748274 Members
4360 Online
108761 Solutions
New Discussion юеВ

Re: make_tape_recovery error in the beginning

 
uadm26
Super Advisor

make_tape_recovery error in the beginning

When running make_net_recovery I am receiving following error:

# make_tape_recovery -a /dev/rmt/0mn -A -x inc_entire=vg00 -x exclude=/opt/oracle -x exclude=opt/oracle92
...
* Testing pax for needed patch
* Passed pax tests.
* Checking Versions of Ignite-UX filesets

Pid 17700 received a SIGSEGV for stack growth failure.
Possible causes: insufficient memory or swap space,
or stack size exceeded maxssiz.
sh: 17700 Memory fault(coredump)
* Creating System Configuration.
* /opt/ignite/bin/save_config -f
/var/opt/ignite/recovery/2005-02-11,15:20/system_cfg
ERROR: A problem has been detected in determining which volume groups and/or
disks are to be part of the recovery archive. This could be due to a
failure of the "list_expander" command. Ensure that the
"/opt/ignite/lbin/list_expander" command returns valid output and
retry.

======= 02/11/05 15:21:05 PWT make_tape_recovery completed unsuccessfully



Any Ideas?
6 REPLIES 6
David Child_1
Honored Contributor

Re: make_tape_recovery error in the beginning

Joel,

You can run /opt/ignite/lbin/list_expander and see what it returns.

Perhaps you have no swap space left to reserve? Is this the first time you have run make_tape_recovery on this system?

check; swap, maxssiz, syslog for helpful info.

David
Sheriff Andy
Trusted Contributor

Re: make_tape_recovery error in the beginning

Just out of curiosity, are your network & pax patches up to date?
I kept getting errors until I updated my patches.
Also how is your swap space?
Jeff Schussele
Honored Contributor

Re: make_tape_recovery error in the beginning

Hi Joel,

I'd check to see if /etc/lvmtab is accurate or not.
If not - delete it & run vgsacn -av
& retry the M_T_R.

Rgds,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
uadm26
Super Advisor

Re: make_tape_recovery error in the beginning

Today i run the make_tape_recovery, and the errors it disappears. I just reduce the sintax using this:

# make_tape_recovery -a /dev/rmt/0mn -A -x inc_entire=vg00

Maybe the last sintax have any problem?
Orhan Biyiklioglu
Respected Contributor

Re: make_tape_recovery error in the beginning

# make_tape_recovery -a /dev/rmt/0mn -A -x inc_entire=vg00 -x exclude=/opt/oracle -x exclude=opt/oracle92

Here there real problem is the "-x exclude=opt/oracle92" part.

Weird, but omitting the leading / on the exclude paths results in this error.

"-x exclude=/opt/oracle92"

should solve the problem.


Hope this helps someone.

Orhan
uadm26
Super Advisor

Re: make_tape_recovery error in the beginning

Thanks for all...