Automated Testing

Automated Testing

Automated Testing

Build an automated testing process to enable continuous integration of your hybrid cloud applications including z/OS

 View Only
  • 1.  Resolver Initialization Failed

    Posted Wed October 23, 2013 07:46 AM

    Hello all,

    We have some problems to start TCPIP on a z113

    LOG output shows that the resolver proc fails to start

    0281  IEF196I         5 XXSETUP DD DISP=SHR,DSN=USER.TCPPARMS(RESOLVER),    
    0281  IEF196I FREE=CLOSE                                                    
    0281  IEF196I           XX*                                                 
    0281  IEF403I RESOLVER - STARTED - TIME=09.41.25                            
    0281  IEF196I IEF236I ALLOC. FOR RESOLVER RESOLVER                          
    0281  IEF196I IEF237I 0A82 ALLOCATED TO SETUP                               
    0290  IEE252I MEMBER CTIRES00 FOUND IN SYS1.PARMLIB                         
    0281  IEF196I IEF285I   USER.PARMLIB                                 KEPT   
    0281  IEF196I IEF285I   VOL SER NOS= ZDSYS1.                                
    0281  IEF196I IEF285I   ADCD.Z113.PARMLIB                            KEPT   
    0281  IEF196I IEF285I   VOL SER NOS= ZDRES1.                                
    0281  IEF196I IEF285I   SYS1.PARMLIB                                 KEPT   
    0281  IEF196I IEF285I   VOL SER NOS= ZDRES1.                                
    0090  EZZ9295I INCORRECT STATEMENT SYNTAX ON LINE    1                      
    0281  IEF196I IEF285I   USER.TCPPARMS                                KEPT   
    0281  IEF196I IEF285I   VOL SER NOS= ZDSYS1.                                
    0090 *EZZ9299E RESOLVER INITIALIZATION FAILED - RC  8 RSN 000D0000          
    0090  IEF404I RESOLVER - ENDED - TIME=09.41.25

    Our RESOLVER procedure is:

    USER.PROCLIB(RESOLVER),
    //*
    //* TCPIP RESOLVER
    //*
    //RESOLVER PROC PARMS='CTRACE(CTIRES00)'
    //*
    //EZBREINI EXEC PGM=EZBREINI,REGION=0M,TIME=1440,
    // PARM=&PARMS
    //SETUP DD DISP=SHR,DSN=USER.TCPPARMS(RESOLVER),FREE=CLOSE

    We have verified and chnaged the quotes in line 1 without succes, after googling around we think that root cause might be due to some authorizations problems to start this RESOLVER proc.

    a) In the console we have issued an APF command : SETPROG APF,ADD,DSNAME=USER.PARMLIB,VOLUME=ZDSYS1 but still initialization failed after IPL

    b) As we are in v1r13 we have created a RESOLVER ID with an OMVS segment as documented in  http://pic.dhe.ibm.com/infocenter/zos/v1r13/index.jsp?topic=%2Fcom.ibm.zos.r13.e0zm100%2Fdefidresolve.htm.

    To continue with b) we need now to associate our ID with the RESOLVER procedure, can someone provide the exact RACF command to be executed.

    Any other idea to investigate this initialization failed is welcome.

     

    jmtizon


  • 2.  Re: Resolver Initialization Failed

    Posted Wed October 23, 2013 07:58 AM

    For additional information this is the JCL we have submitted to create the RESOLVER ID.

    //*=========================== RESOLVER ===============================//*====================================================================//*====================================================================//*//* Create the userid and its OMVS Segment for the daemon and//* add it to the STARTED Class which is activated in this job.//*//* If you chose not to use the RACF STARTED Class,//* the entry should be placed in the started procedures table ICHRIN03.//*//RESOLVER EXEC PGM=IKJEFT01//SYSTSPRT DD SYSOUT=*//SYSTSIN DD *SETROPTS CLASSACT(STARTED)SETROPTS RACLIST(STARTED)SETROPTS GENERIC(STARTED)ADDUSER RESOLVER DFLTGRP(OMVSGRP) OMVS(UID(42) HOME('/')) -NOPASSWORDRDEFINE STARTED RESOLVER.* STDATA(USER(RESOLVER))SETROPTS RACLIST(STARTED) REFRESHSETROPTS GENERIC(STARTED) REFRESH//*

     

    Not sure the RDEFINE is adapted to our environment.

    Can someone explain the RDEFINE syntax :

    RDEFINE STARTED RESOLVER.* STDATA(USER(RESOLVER))

     

    jmtizon