--- In turnkey-mvs <at> yahoogroups.com, "somitcw" <somitcw <at> ...> wrote:
>
>- - - snipped - - -
>>> montywalls wrote:
>>>> Then changed: sys1.parmlib(jes2parm) to have:
>>>> &NUMRDRS=2
>- - - snipped - - -
> I agree that SYS1.JES2PARM(JES2PARM) is the
>correct member to change but am unsure what to
>specify for &NUMRDR ?
> Since 20C will be your third reader, you may
>need &NUMRDR=2 or &NUMRDR=3 ?
>To get ready for 30C, why not code &NUMRDR=4 ?
I just tested it and found:
1. The message about exceeding the maximum number
of readers means that MVS has more readers genned
than JES2 &NUMRDR= specifies.
2. If you change &NUMRDR=1 to &NUMRDR=4 then JES2
will define all four MVS readers as RDR1, RDR2,
RDR3, and RDR4.
3. You should add READERx statements to JES2 to
prevent weird parameters like starting each
online reader when JES2 starts.
I suggest that you code:
&NUMRDRS=4 Maximum no. of local readers
*
*
*
READER1 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=C,PRLCL,PULCL,UNIT=00C,DRAIN
READER2 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=C,PRLCL,PULCL,UNIT=10C,DRAIN
READER3 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=C,PRLCL,PULCL,UNIT=20C,DRAIN
READER4 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=C,PRLCL,PULCL,UNIT=30C,DRAIN
If you need any reader to start on JES2 start-up
remove the ",DRAIN" or add a start reader command
near the end of SYS1.JES2PARM(JES2PARM) like:
$SRDR3
I assume that any ready readers will be put
online during an MVS IPL but if not, you can add a
$VS,'VARY 20C,ONLINE - issued from JES2PARM'
a few lines before the
$SRDR3
Note: JES2 commands don't tolerate comments well
or at all.