z/OS DFSMS OAM Planning, Installation, and Storage Administration Guide for Object Support
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Example file system configuration for OAM usage

z/OS DFSMS OAM Planning, Installation, and Storage Administration Guide for Object Support
SC23-6866-00

This topic provides an example of the file system configuration for OAM usage. This description supplements the information provided in 3 Configure the z/OS Unix file system.

There are many ways to accomplish the individual tasks identified below. This is just one representative example.

From the planning phase, assume that the following values are known:
Attribute Values used in this example
Security Product OAM Group Name OAMGRP
Security Product OAM User Name OAM
Object Storage Group Name SG3
File System Directory Name (L2DIR) /myoam/sg3
File System Directory Type (L2TYPE) ZFS

A zFS aggregate with the name "OAM.SG3.ZFS" has been created for the OAM object storage group named SG3. Note that the value used for the File System Directory Name is case sensitive, so the file system directory name used in the z/OS UNIX file system hierarchy must exactly match the value later specified in the OAM configuration on the SETDISK statement of the CBROAMxx member of PARMLIB.

Assume that an existing directory named /myoam in the z/OS UNIX file system hierarchy will be used to contain the mount points for all of the file systems to be used for OAM object storage groups.

A z/OS UNIX superuser in a z/OS UNIX shell:

  1. Creates a new directory named sg3 for the OAM storage group named SG3. The current directory is /myoam.
    mkdir sg3
  2. Mounts the physical file system "OAM.SG3.ZFS" at the mount point /myoam/sg3.
    mount -v -t ZFS -f "OAM.SG3.ZFS" /myoam/sg3
  3. Changes the owner of the mounted file system to the security product "OAM" user name
    chown OAM /myoam/sg3
  4. Changes the group of the mounted file system to the security product "OAMGRP" group name
    chgrp OAMGRP /myoam/sg3
  5. Creates the permissions of the mounted file system to limit access only to the "OAM" user name
    chmod 700 /myoam/sg3
  6. Creates the required sentinel file named 4oamonly within the mounted file system
    echo 0 > /myoam/sg3/4oamonly
  7. Changes the owner of the sentinel file to the security product "OAM" user name
    chown OAM /myoam/sg3/4oamonly
  8. Changes the group of the sentinel file to the security product "OAMGRP" group name
    chgrp OAMGRP /myoam/sg3/4oamonly
  9. Creates the permissions of the sentinel file to limit access only to the "OAM" user name
    chmod 600 /myoam/sg3/4oamonly

    Then the OAM administrator:

  10. Adds a SETDISK statement to the CBROAMxx member of PARMLIB to associate the location of the mounted file system /myoam/sg3 with the OAM object storage group SG3. Because the L2DIR directory value is case sensitive, when editing in TSO/ISPF remember to set "CAPS OFF" so that any lower case values are preserved when changes to the CBROAMxx member of PARMLIB are saved.
    SETDISK STORAGEGROUP(SG3 L2DIR(/myoam/sg3) L2TYPE(ZFS))

To use the file system sublevel, the SMS administrator must add or update one or more SMS storage class definitions to specify the file system sublevel. See Understanding the storage class construct for more information. Also review and update ACS routines as needed to use the storage class.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014