Starting the Enterprise Server for IBM i Automatically

To start the enterprise server for IBM i automatically:

  1. Create a CL program.

    You will use this program to establish the appropriate JD Edwards EnterpriseOne library list and execute the command to start the IBM i server job (JDENet).

    The CL program should be similar to:

    PGM
    CHGLIBL LIBL(E920SYS QTEMP QGPL)
    STRNET
    ENDPGM
    
  2. Identify and modify the program called during the IBM i IPL to submit a job to call the previous program.

    The program name and location are set in the IBM i system value, QSTRUPPGM.

  3. Determine the QSTRUPPGM value by entering this command:

    DSPSYSVAL SYSVAL(QSTRUPPGM)
    
  4. Determine where the source of the program is located by executing this command against the library and program (as set in the system value):

    DSPPGM LIBRARY/PROGRAM NAME
    
  5. Modify the source of the startup library and program by inserting a SBMJOB command that calls the program created in Step 1.

  6. Verify that the startup program is created correctly by recreating it and ensuring that it is created in the library specified by the system value.

    Use CRTCLPGRM and prompt (using F4) for the appropriate parameters.