View previous topic :: View next topic |
Author |
Message |
mwdazzo Beginner
Joined: 15 Mar 2005 Posts: 36 Topics: 20
|
Posted: Wed Feb 07, 2007 1:58 pm Post subject: IPL On Alternate Res |
|
|
I have 2 questions;
1. We are running zOS1.7, after specifying in sys1.parmlib what res to use (primary or alts) and ipling the log displays the following. In my case I want the alternates used for testing.
IEA007I STATIC SYSTEM SYMBOL VALUES 077
&SYSALVL. = "2"
&SYSCLONE. = "20"
&SYSNAME. = "SYS1"
&SYSPLEX. = "LOCAL"
&SYSR1. = "TZOSP1"
&SYSR2. = "TZOSA1"
&SYSR3. = "TZOSA2"
My questions is, &SYSR1 equals the primary res but &SYSR2 and 3 equals the alt res's. Is this normal? My settings in parmlib state to use the alt's.
2. What is the best way to determine what res's are used?
Thanks |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Wed Feb 07, 2007 5:31 pm Post subject: |
|
|
The Init and Tuning manual says "Define static symbols &SYSR2, &SYSR3, and so on, in the IEASYMxx "
Are you using an alternate IEASYMxx in LOADxx? _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
warp5 Intermediate

Joined: 02 Dec 2002 Posts: 429 Topics: 18 Location: Germany
|
Posted: Thu Feb 08, 2007 2:16 am Post subject: |
|
|
It seems to me that you are actually ipling from the tzosp1 disk, are you running in an lpar? Are you ipling the lpar from the alternate disk? |
|
Back to top |
|
 |
nevilh Beginner
Joined: 11 Aug 2004 Posts: 115 Topics: 0
|
Posted: Thu Feb 08, 2007 3:19 am Post subject: |
|
|
&SYSR2 and 3 will not be filled by the system they will have whatever value you specified. |
|
Back to top |
|
 |
taltyman JCL Forum Moderator

Joined: 02 Dec 2002 Posts: 310 Topics: 8 Location: Texas
|
Posted: Thu Feb 08, 2007 11:21 am Post subject: |
|
|
Here is a sample from one of my lpars...
SYSDEF LPARNAME(SYSA)
SYSCLONE(TT)
SYMDEF(&SUBAREA.='16')
SYMDEF(&VTAMPRM.='TT')
SYMDEF(&MVSNAME.='SYST')
SYMDEF(&MVSID.='T')
SYMDEF(&HSMPARM.='TY')
SYMDEF(&LOGCLS.='0')
SYMDEF(&RSUVAL.='00')
SYMDEF(&CNMTCPN='TCPIP')
SYMDEF(&CNMRODM='RODM')
SYMDEF(&CNMNETID='USTUSI01')
SYMDEF(&SYSR2.='&SYSR1(1:5).2')
SYMDEF(&SYSR3.='&SYSR1(1:5).3')
SYMDEF(&SYSR4.='&SYSR1(1:5).4')
SYMDEF(&SYSR5.='&SYSR1(1:5).5') |
|
Back to top |
|
 |
mwdazzo Beginner
Joined: 15 Mar 2005 Posts: 36 Topics: 20
|
Posted: Thu Feb 08, 2007 11:46 am Post subject: IPL On Alternate Res |
|
|
Thanks, the problem was that I did not change the ipl address to the alt primary res. Thanks |
|
Back to top |
|
 |
|
|