Re: In over my head again...
"kerravon86" <kerravon86-/[email protected]>
| Newsgroups | gmane.comp.emulators.turnkey-mvs |
|---|---|
| Message-ID | <[email protected]> |
--- In [email protected], "ScottC" <scosel@...> wrote: > > > --- In [email protected], Ron Hudson <hudson.ra@> wrote: > > > > Well It's sink or swim! I am trying to create a user catalog > Why? > > > Because: 1) I am tired of always having to type the password > > (sys1.vmastcat has an update password) > > 2) Users in the master catalog is frowned on in the > "real world" > > I think the following will be sufficient for your stated objectives: > > //HERC01A JOB CLASS=C,REGION=0K,NOTIFY=HERC01 > //*** > //*** Define aliases for High-level qualifiers suitable for > //*** your site. > //*** New 'USER01' datasets can be allocated without P/W. > //*** > //IDCAMS EXEC PGM=IDCAMS > //SYSPRINT DD SYSOUT=* > //SYSIN DD * > DEFINE ALIAS (NAME(USER01) RELATE(SYS1.UCAT.TSO)) - > CATALOG(SYS1.VMASTCAT/SECRET) > // > > Messing around with creating your own user catalog at this stage of the > game is not worth it. And if the existing names interfere with the ability to create an alias, then rename them first. But before doing the rename, switch off the password for the master catalog to make life easier for you: //HERC01A JOB CLASS=C,REGION=0K //IDCAMS EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=* //SYSIN DD * ALTER SYS1.VMASTCAT - NULLIFY(MASTERPW CONTROLPW UPDATEPW READPW) - CATALOG(SYS1.VMASTCAT/SECRET) SET MAXCC=0 /* //UNUSED DD * ALTER SYS1.VMASTCAT - MASTERPW(SECRET) - CONTROLPW(SECRET) - UPDATEPW(SECRET) /* //* // BFN. Paul.