Previous Topic: File Structure Considerations on z/OSNext Topic: Repository


zSeries File System Architecture

The zSeries File System (zFS) address space must be running under z/OS UNIX.

Decide how you want your zFS to be structured. Event Management is designed to use a read-only (RO) zFS that can be shared across systems and a read/write (RW) zFS for each system running Event Management. Mount the RW directory under the RO directory. For example, mount RO zFS at /cai/nsmem and mount the RW zFS at /cai/nsmem/RW. For Agent Technology, the reverse is true: the RO directory is under the RW directory. The Agent Technology zFS files are shown in the following example and the Event Management zFS files.

Example

A typical BPXPRMxx mount setup can use the following statements:

MOUNT          FILESYSTEM('CAI.DIR.HFS')        
               MOUNTPOINT('/cai')                             
               TYPE(HFS)  MODE(RDWR)                          
/*                                                           */
MOUNT          FILESYSTEM('CAI.NSMEM.RO.CAIZFS')  
               MOUNTPOINT('/cai/nsmem')                        
               TYPE(ZFS)  MODE(READ)                           
/*                                                            */
MOUNT          FILESYSTEM('CAI.NSMEM.RW.CAIZFS')  
               MOUNTPOINT('/cai/nsmem/RW')
   	       PARM('AGGRFULL(90,5)')                     
               TYPE(ZFS)  MODE(RDWR)                    
/*                                                            */
MOUNT          FILESYSTEM('CAI.AGENT.RW.CAIZFS')  
               MOUNTPOINT('/cai/agent')
	       PARM('AGGRFULL(90,5)')                        
               TYPE(ZFS)  MODE(RDWR)                           
/*                                                            */
MOUNT          FILESYSTEM('CAI.AGENT.RO.CAIZFS')  
               MOUNTPOINT('/cai/agent/services/bin')           
               TYPE(ZFS)  MODE(READ)

Note in this example: