montywalls | 13 Feb 2009 22:19
Picon
Favicon

How to add additional rdr to turnkey mvs?

Ok, I'm trying to add an additional cardreader to mvs3.8j (turnkey),
so I can have one in ascii & ebdic each.

So far what I've tried:

added to conf/turnkey_mvs.conf (since 20c is in the sysgen as a reader):
020C 3505 localhost:3504 sockdev ebcdic trunc eof

Then changed: sys1.parmlib(jes2parm) to have:
&NUMRDRS=2
READER2 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=A,PRLCL,PULCL,UNIT=20C

Unfortunately I still get this error:
$HASP412 MAXIMUM OF 1 READER(S) EXCEEDED

So, what did I forget to change?

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Y! Groups blog

The place to go

to stay informed

on Groups news!

Dog Groups

on Yahoo! Groups

Share pictures &

stories about dogs.

.

__,_._,___
Roger Bowler | 13 Feb 2009 22:56
Picon
Favicon

Re: How to add additional rdr to turnkey mvs?

montywalls wrote:
> Then changed: sys1.parmlib(jes2parm) to have:
> &NUMRDRS=2
> READER2 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=A,PRLCL,PULCL,UNIT=20C
> Unfortunately I still get this error:
> $HASP412 MAXIMUM OF 1 READER(S) EXCEEDED
> So, what did I forget to change?

You might be changing the wrong parmlib. Check sys1.proclib(jes2) to see
what parmlib it's pointing to.

--
Cordialement,
Roger Bowler

roger.bowler <at> wanadoo.fr
http://perso.wanadoo.fr/rbowler
Hercules "I can't believe it's not a mainframe"

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Y! Groups blog

The place to go

to stay informed

on Groups news!

Yahoo! Groups

Special K Challenge

Join others who

are losing pounds.

.

__,_._,___
laddiehanus | 14 Feb 2009 00:24
Picon
Favicon

Re: How to add additional rdr to turnkey mvs?

--- In turnkey-mvs <at> yahoogroups.com, Roger Bowler <rogerbowler <at> ...> wrote:
>
> montywalls wrote:
> > Then changed: sys1.parmlib(jes2parm) to have:
> > &NUMRDRS=2
> > READER2 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=A,PRLCL,PULCL,UNIT=20C
> > Unfortunately I still get this error:
> > $HASP412 MAXIMUM OF 1 READER(S) EXCEEDED
> > So, what did I forget to change?
>
> You might be changing the wrong parmlib. Check sys1.proclib(jes2) to
see
> what parmlib it's pointing to.
>
> --
> Cordialement,
> Roger Bowler
>
> roger.bowler <at> ...
> http://perso.wanadoo.fr/rbowler
> Hercules "I can't believe it's not a mainframe"
>

On my system its sys1.jes2parm dont think I have changed it.

Laddie Hanus

__._,_.___
Recent Activity
Visit Your Group
Group Charity

Give a laptop

Get a laptop: One

laptop per child

Yahoo! Groups

Cat Owners Group

Connect and share with

others who love their cats

All-Bran

Day 10 Club

on Yahoo! Groups

Feel better with fiber.

.

__,_._,___
somitcw | 14 Feb 2009 15:52
Picon
Favicon

Re: How to add additional rdr to turnkey mvs?

- - - 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 ?

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

John McEnroe

on Yahoo! Groups

Join him for the

10 Day Challenge.

Special K Group

on Yahoo! Groups

Join the challenge

and lose weight.

.

__,_._,___
somitcw | 14 Feb 2009 16:19
Picon
Favicon

Re: How to add additional rdr to turnkey mvs?

--- 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.

__._,_.___
Recent Activity
Visit Your Group
Give Back

Yahoo! for Good

Get inspired

by a good cause.

Y! Toolbar

Get it Free!

easy 1-click access

to your groups.

Yahoo! Groups

Start a group

in 3 easy steps.

Connect with others.

.

__,_._,___
rfochtman | 14 Feb 2009 16:20

Re: How to add additional rdr to turnkey mvs?

--- In turnkey-mvs <at> yahoogroups.com, "montywalls" <montywalls <at> ...> wrote:
>
> Ok, I'm trying to add an additional cardreader to mvs3.8j (turnkey),
> so I can have one in ascii & ebdic each.
>
> So far what I've tried:
>
> added to conf/turnkey_mvs.conf (since 20c is in the sysgen as a reader):
> 020C 3505 localhost:3504 sockdev ebcdic trunc eof
>
> Then changed: sys1.parmlib(jes2parm) to have:
> &NUMRDRS=2
> READER2 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=A,PRLCL,PULCL,UNIT=20C
>
> Unfortunately I still get this error:
> $HASP412 MAXIMUM OF 1 READER(S) EXCEEDED
>
> So, what did I forget to change?
>
IIRC, the correct parm is NUMRDR=

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Dog Fanatics

on Yahoo! Groups

Find people who are

crazy about dogs.

Get in Shape

on Yahoo! Groups

Find a buddy

and lose weight.

.

__,_._,___
montywalls | 14 Feb 2009 17:23
Picon
Favicon

Re: How to add additional rdr to turnkey mvs?

--- In turnkey-mvs <at> yahoogroups.com, "montywalls" <montywalls <at> ...> wrote:
>
> Ok, I'm trying to add an additional cardreader to mvs3.8j (turnkey),
> so I can have one in ascii & ebdic each.
>
> So far what I've tried:
>
> added to conf/turnkey_mvs.conf (since 20c is in the sysgen as a reader):
> 020C 3505 localhost:3504 sockdev ebcdic trunc eof
>
> Then changed: sys1.parmlib(jes2parm) to have:
> &NUMRDRS=2
> READER2 AUTH=0,CLASS=A,NOHOLD,MSGCLASS=A,PRLCL,PULCL,UNIT=20C
>
> Unfortunately I still get this error:
> $HASP412 MAXIMUM OF 1 READER(S) EXCEEDED
>
> So, what did I forget to change?
>

Thank you to all that answered, I now have it working (helps if you
hack the right jes2parm member). Between upping the NUMRDRS and
adding lines for all the extra readers, I'm in good shape now.

-Monty.

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Group Charity

Citizen Schools

Best after school

program in the US

Yahoo! Groups

Dog Zone

Connect w/others

who love dogs.

.

__,_._,___
Stan Saraczewski | 15 Feb 2009 17:37
Picon
Favicon

JCL Question

OK - this is an embarrassing question because I should know this - but what class or disposition must I show in the sysout DD so that I can use RPF to 'view' my listing ? Nothing seems to work.

//SYSPRINT DD SYSOUT=A,HOLD=YES

??

----------------------------------------------------------

Always try to stop talking before people stop listening.

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Cat Zone

on Yahoo! Groups

Join a Group

all about cats.

Weight Loss Group

on Yahoo! Groups

Get support and

make friends online.

.

__,_._,___
somitcw | 15 Feb 2009 18:25
Picon
Favicon

Re: JCL Question

--- In turnkey-mvs <at> yahoogroups.com,
Stan Saraczewski <stan_saraczewski <at> ...> wrote:
> OK - this is an embarrassing question because
>I should know this - but what class or disposition
>must I show in the sysout DD so that I can use RPF
>to 'view' my listing ? Nothing seems to work.
> //SYSPRINT DD SYSOUT=A,HOLD=YES
> ??
> ----------------------------------------------------------
> Always try to stop talking before people stop listening.

//HERC01X JOB JOB,JOB,CLASS=A,MSGCLASS=C
.
.
.
//SYSPRINT DD SYSOUT=*

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Yahoo! Groups

Dog Lovers Group

Connect and share with

dog owners like you

Support Group

Lose lbs together

Share your weight-

loss successes.

.

__,_._,___
Stan Saraczewski | 15 Feb 2009 18:34
Picon
Favicon

Re: Re: JCL Question

That was my problem - thank you.



--------------------------------------------------------------------



Always try to stop talking before people stop listening.

--- On Sun, 2/15/09, somitcw <somitcw <at> yahoo.com> wrote:
From: somitcw <somitcw <at> yahoo.com>
Subject: [turnkey-mvs] Re: JCL Question
To: turnkey-mvs <at> yahoogroups.com
Date: Sunday, February 15, 2009, 9:25 AM

--- In turnkey-mvs <at> yahoogroups. com,
Stan Saraczewski <stan_saraczewski <at> ...> wrote:
> OK - this is an embarrassing question because
>I should know this - but what class or disposition
>must I show in the sysout DD so that I can use RPF
>to 'view' my listing ? Nothing seems to work.
> //SYSPRINT DD SYSOUT=A,HOLD= YES
> ??
> ------------ --------- --------- --------- --------- --------- -
> Always try to stop talking before people stop listening.

//HERC01X JOB JOB,JOB,CLASS= A,MSGCLASS= C
.
.
.
//SYSPRINT DD SYSOUT=*


__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Group Charity

City Year

Young people who

change the world

Yahoo! Groups

Cat Group

Join a group for

people who love cats

.

__,_._,___

Gmane