Co:Z Launcher ended with RC=127

General discussion of the Co:Z Toolkit
Post Reply
vrsg
Posts: 1
Joined: Fri Mar 04, 2011 3:50 am

Co:Z Launcher ended with RC=127

Post by vrsg »

Hi,

We have Co:Z Toolkit for z/OS - release 1.7.2 installed on z/OS V1R11 and Co:Z Target System Toolkit - release 1.0.5-1 installed on SLES 10 SP3 Linux instance running under z/VM 6.1
Both are set to run as a non-root user. Our Oracle daily incremental database backups are initiated in batch via JCL job steps that execute the COZLNCH load module.
We have 9 incremental database backups that starts to run everyday at 7PM, sporadically the first incremental produces a RC=127.
Any help would be greatly appreciated.

the job output are as follows:

CoZLauncher[N]: version: 1.7.2 2010-07-23
CoZLauncher[N]: Copyright (C) Dovetailed Technologies, LLC. 2006. All rights reserved.
cozagent[N]: version: 1.0.5 2008-03-01
cozagent[E]: Target Program(27369) ended with RC=127
CoZLauncher[E]: ORAPDBA@vmwi-lnxorap01 target command '<default shell>' ended with RC=127

the JCL job step are as follows, the above out is produced at the GENCLUP step (first step), more step follow but they are not included.

//ORAP01SI JOB (VRXXXXX,PR),'INCR-SAVE PROD01',
// USER=DBA,
// CLASS=B,MSGCLASS=Y,REGION=0K
//*-------------------------------------------------------------------*
//* GENERATE SCRIPT FOR FLASH RECOVERY AREA CLEANUP *
//*-------------------------------------------------------------------*
//GENCLUP EXEC PROC=COZPROC,COND=(0,LT),
// USER='DBA',
// HOST='linux1'
//STDIN DD *
cat /dev/null > /orasrc/scripts/dbsave/prod/PROD012_cleanup_FRA_incrsave.cmd
export ORACLE_HOME=/oracle/rdbms/PROD01
export ORACLE_SID=PROD012
/oracle/rdbms/PROD01/bin/sqlplus /nolog
@/orasrc/scripts/dbsave/prod/gen_cleanup_FRA_incrsave.cmd
//
dovetail
Site Admin
Posts: 2022
Joined: Thu Jul 29, 2004 12:12 pm

Post by dovetail »

Try adding this line to the top of your STDIN:

set -x

This should give you a trace of your shell script.
Post Reply