× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



You can retrieve the source for QSTRUP from QSYS.  It has been known to
change from release to release, and although though those changes are
subtle, you need to be aware of them, and make your own changes from
release to release.

Many people have modified this program to start TCP/IP, and starting of
TCP/IP is becomes an IPL attribute in V5R1.  I believe that the default is
"No", because so many people have  modified this program.

Most people that I know who modify the program retrieve the source, putting
it into QCLSRC  in QGPL, compile the new version into QGPL, and then change
the system value QSTRUPPGM to refer to QSTRUP in QGPL, whereas the IBM
shipped default is QSTRUP in QSYS.

Al

Al Barsa, Jr.
Barsa Consulting Group, LLC

400>390

914-251-1234
914-251-9406 fax

http://www.barsaconsulting.com
http://www.taatool.com






                    "Jim Franz"
                    <franz400@triad.rr.       To:     <midrange-l@midrange.com>
                    com>                      cc:
                    Sent by:                  Subject:     Re: Backup program 
problems.
                    midrange-l-admin@mi
                    drange.com


                    04/02/02 08:22 AM
                    Please respond to
                    midrange-l






It would help to know the OS Version & release your at.
Also, how do these normally start during ipl? Are they in the QSTRUP pgm,
a customized pgm, or have the subsystems been altered?
(note: ibm's recommended method to starting tcp & servers has changed
several times since V3R7 as they have elvolved the programs).
jim

----- Original Message -----
From: "MARYLOU ATWELL" <MATWELL@interborosd.org>
To: <midrange-l@midrange.com>
Sent: Tuesday, April 02, 2002 7:58 AM
Subject: Backup program problems.


Good morning Folks!  Hope all are having a good day.   I am having
difficulty with my backup program.    What is happening is either TCP, or
the Host Servers, or the  Seagull items are not starting  or ending, there
fore, it's not doing the backup.   Below is the cut and paste of the
program
from the CLsrc on the 400.  Any help would be totally appreciated, since
I'm
lost at this point.   ANd it'snot supported by IBM, even though I got the
idea from them ages ago.
What happens is that Qezbackup runs and it will inizialize (sp) the tape,
then end the subsystems to do the back up and then bring the subsystems
back
up.  I made a change to get the *http server to start for the Seagull
server
and since then it's not been working.       Is there a way for me to test
that it will work, with no messages without me taking down the whole system
during the day?

Any help is totally appreciated.



 Columns . . . :    1  71            Edit
QGPL/QCLSRC
 SEU==>
EXITBACOLD
 FMT **  ...+... 1 ...+... 2 ...+... 3 ...+... 4 ...+... 5 ...+... 6 ...
+...
7
        *************** Beginning of data
*************************************
0001.00 PGM PARM(&PRODID &FLAG &OPTIONS &TAPSET &RETCODE &MSG)
0002.00       /*CALLING PRODUCT WILL BE 'QEZBACKUP' WHEN CALLED FROM +
0003.00        OPERATIONAL ASSISTANT.*/
0004.00     DCL  VAR(&prodid) TYPE(*CHAR) LEN(10)
0005.00     DCL  VAR(&flag) TYPE(*CHAR) LEN(10)
0006.00         /*INDICATES WHETHER BEFORE OR AFTER BACKUP*/
0007.00     DCL  VAR(&tapset) TYPE(*CHAR) LEN(4) /*TAPE SET NAME*/
0008.00     DCL  VAR(&retcode) TYPE(*CHAR) LEN(7) /*RETURN CODE*/
0009.00     DCL  VAR(&options) TYPE(*CHAR) LEN(10) /*OPTIONS USED*/
0010.00     DCL  VAR(&msg) TYPE(*CHAR) LEN(512)    /*MESSAGE TEXT*/
0011.00
0012.00 IF    COND(&flag *EQ '*BEFORE   ') THEN(DO)
0013.00
/*-------------------------------------------------------------------*/
0014.00  INZTAP:     CALL       PGM(INZTAP)
0015.00              MONMSG     MSGID(CPF0000)
0016.00              DLYJOB     DLY(120)
0017.00  QSNADS:     ENDSBS     SBS(QSNADS) OPTION(*IMMED)
0018.00  MESSAGES:   MONMSG     MSGID(CPF0000)
0019.00              DLYJOB     DLY(120)
0020.00  QSERVER:    ENDSBS     SBS(QSERVER) OPTION(*IMMED)
0021.00              MONMSG     MSGID(CPF0000)
0022.00  QINTER:     ENDSBS     SBS(QINTER) OPTION(*IMMED)
0023.00              MONMSG     MSGID(CPF0000)
0024.00              ENDSBS     SBS(QINTER2) OPTION(*IMMED)
0025.00              MONMSG     MSGID(CPF0000)
0026.00              ENDTCP
0027.00              ENDHOSTSVR SERVER(*ALL)
0028.00              DLYJOB     DLY(60)
0029.00  JWALK:      SEAJWK/ENDJWKSVR
0030.00  JWALKLIC:   SEALMS/ENDLMSTCP
0031.00              DLYJOB     DLY(200)
0032.00  COMPLEO:    ENDSBS     SBS(ICASRV) DELAY(120)
0033.00              MONMSG     MSGID(CPF0000)
0034.00      ENDDO
0035.00
0036.00
0037.00 IF COND(&FLAG *EQ '*AFTER      ')      THEN(DO)
0038.00
/*-------------------------------------------------------------------*/
0039.00  QSNADS1:    STRSBS     SBSD(QSNADS)
0040.00              MONMSG     MSGID(CPF0000)
0041.00  QSERVER1:   STRSBS     SBSD(QSERVER)
0042.00              MONMSG     MSGID(CPF0000)
0043.00  QINTER1:    STRSBS     SBSD(QINTER)
0044.00              MONMSG     MSGID(CPF0000)
0045.00              DLYJOB     DLY(120)
0046.00              STRSBS     SBSD(QINTER2)
0047.00              MONMSG     MSGID(CPF0000)
0048.00              STRTCP
0049.00              STRHOSTSVR SERVER(*ALL)
0050.00              SEAJWK/STRJWKSVR
0051.00              SEALMS/STRLMSTCP
0052.00  ENDDO
0053.00
/*-----------------------------------------------------------------*/
0054.00  ENDPGM
        ****************** End of data
****************************************



MaryLou Schoff-Atwell
IBM Certified Associate System Operator
Interboro School District
900 Washington Avenue
Prospect Park, PA  19076
_______________________________________________
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@midrange.com
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/cgi-bin/listinfo/midrange-l
or email: MIDRANGE-L-request@midrange.com
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.



_______________________________________________
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@midrange.com
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/cgi-bin/listinfo/midrange-l
or email: MIDRANGE-L-request@midrange.com
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.







As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.