SlideShare a Scribd company logo
1 of 68
Taming the Beast – Best Practices
for zFS with CICS
Phil_Wakelin@uk.ibm.com
CICS Strategy & Design, IBM Hursley UK
Disclaimer
IBM’s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM’s
sole discretion.
Information regarding potential future products is intended to outline our general product direction and it should not be
relied on in making a purchasing decision.
The information mentioned regarding potential future products is not a commitment, promise, or legal obligation to
deliver any material, code or functionality. Information about potential future products may not be incorporated into any
contract. The development, release, and timing of any future features or functionality described for our products
remains at our sole discretion.
Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment.
The actual throughput or performance that any user will experience will vary depending upon many factors, including
considerations such as the amount of multiprogramming in the user’s job stream, the I/O configuration, the storage
configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve
results similar to those stated here.
Why zFS?
The Problem...
Objective
Aplace
for
everything
Types of CICS zFS files
Install
−CICS stuff provided by IBM
−CICS Programs and Samples
−May change during APARs
Types of CICS zFS files
Install
−CICS stuff provided by IBM
−CICS Programs and Samples
−May change during APARs
Critical
−Things that define your applications and environments
−Programs, Properties and Config files etc
−Should be considered critical and be recoverable
Types of CICS zFS files
Install
− CICS stuff provided by IBM
− CICS Programs and Samples
− May change during APARs
Critical
− Things that define your applications and environments
− Programs, Properties and Config files etc
− Should be considered critical and be recoverable
Temp
− Things that applications create or write to at runtime
− Non critical, messages and logs files etc
Where should they go?
Install
−Default: /usr/lpp/cicsts52
−SIT Parm: USSHOME
Critical
−Suggest using /var/cicsts/...
−May have sub directories per CICSPlex or region
−Use directories to group common assets eg all web files
Temp
−Suggest using a separate place eg /cicslogs/<APPLID>...
−Typically have one per region
−May need to clean out periodically
Setup for Install Dir
Create release specific directory structure
− /usr/lpp/cicsts is created ONCE for all releases (read only)
− Depending on SMP/E target zone structure
− You may create variants of /cicsts52
Setup for Install Dir

Directories under /cicsts52
− docs
− IBM
− JVMPROFILES
− lib
− pipelines
− samples
− schemas
− ...
Setup for Install Dir

SIT Parms

USSHOME
− The name and path of the root directory for CICS files
− Default: /usr/lpp/cicsts/cicsts52
Setup for Critical Dir

Create data set for usage as /var/cicsts

If sharing zFS across a sysplex
− Mount data set onto root filing system as /cicsts as a
r/w filing system
− On each LPAR create symbolic link to link /var/cicsts to
/cicsts (/var is always a symlink to /<LPAR>/var)
− > ln -s /cicsts /var/cicsts

If not sharing zFS
− Mount data set onto /var as /var/cicsts
Setup for Critical Dir

SIT Parms

USSCONFIG
− The name and path of the directory for CICS config
files
− Default: /var/cicsts/dfhconfig

JVMPROFILEDIR
− The directory name for the JVM profiles
− Suggest: /var/cicsts/jvmprofiles
− Sample profiles DFHJVMAX and DFHOSGI must be
copied to here (and edited) if you want to use them
Setup for Temp Dirs

Give a z/OS UNIX User ID to each CICS region user ID

Set up a Temp Dir on zFS for each of your CICS regions
(eg /cicslogs/<APPLID>)
− Each Temp Dir should be a separate filing system
each backed by their own dataset
− Give each region's User ID r/w permissions to their
directory

Choose a z/OS UNIX Group ID (GID) for the RACF
group, and assign the it to the RACF Group

Make sure that each CICS region user ID connects to
the RACF group that you choose
Everything
initsplace
CICSTS5.1introducesApplicationandPlatformresources
whicharepackagedasbundlesonzFS…
CICSandzFSusagesurvey: typesofresources
DOCTEMPLATEs, URIMAPs and TCPIPSERVICES

DOCTEMPLATE attribute

HFSFILE
− zFS file containing the template (when it resides in zFS)

URIMAP attribute

HFSFILE
− zFS file that forms the body of a static response to an HTTP request from a Web
Client

TCPIPSERVICE attribute

CIPHERS
− zFS file that contains the SSL cipher suite specification
− Relative to USSCONFIG
DOCTEMPLATEs, URIMAPs and TCPIPSERVICES

DOCTEMPLATE attribute

HFSFILE
− zFS file containing the template (when it resides in zFS)

URIMAP attribute

HFSFILE
− zFS file that forms the body of a static response to an HTTP request from a Web
Client

TCPIPSERVICE attribute

CIPHERS
− zFS file that contains the SSL cipher suite specification
− Relative to USSCONFIG

Put all of these in the Critical Dir!
WEBSERVICEs

WEBSERVICE attributes

WSBIND
− zFS file name of web serivce binding file

WSDLFILE
− zFS file name of the WSDL file

ARCHIVEFILE
− zFS file name of the zip file that contains the WDSL
WEBSERVICEs

WEBSERVICE attributes

WSBIND
− zFS file name of web serivce binding file

WSDLFILE
− zFS file name of the WSDL file

ARCHIVEFILE
− zFS file name of the zip file that contains the WDSL

Put all of these in the Critical Dir!
PIPELINEs

PIPELINE attributes

CONFIGFILE
− ZFS file that defines processing nodes

SHELF*
− Directory for CICS to store installed artifacts (may be
shared by multiple CICS Regions)

WSDIR
− Directory for WSDL and WSBIND files that are to be
installed into CICS
PIPELINEs

PIPELINE attributes

CONFIGFILE
− ZFS file that defines processing nodes

SHELF*
− Directory for CICS to store installed artifacts (may be
shared by multiple CICS Regions)

WSDIR
− Directory for WSDL and WSBIND files that are to be
installed into CICS

Put all of these in the Critical Dir! * Recoveryofshelfdirectory
shouldbeconsideredcritical
resourceforWARMrestartif
usingaCSDdefined
WEBSERVICE(asopposedtoa
pipelinescan)
BUNDLEs

BUNDLE attribute

BUNDLEDIR – zFS path to bundle directory
BUNDLEs

BUNDLE attribute

BUNDLEDIR – zFS path to bundle directory

Critical Dir again!
Java Resources

PROGRAM attribute

JVMCLASS
− Name of service defined in OSGI bundle, in a CICS
Bundle
− Contained in BUNDLEDIR on the BUNDLE

JVMSERVER attribute

JVMPROFILE
− zFS file name of the JVMPROFILE
− Relative to the SIT parm JVMPROFILEDIR

If the JVMSERVER is installed as a part of a bundle,
JVMPROFILE is relative to BUNDLEDIR on the
BUNDLE
Java Resources

PROGRAM attribute

JVMCLASS
− Name of service defined in OSGI bundle, in a CICS
Bundle
− Contained in BUNDLEDIR on the BUNDLE

JVMSERVER attribute

JVMPROFILE
− zFS file name of the JVMPROFILE
− Relative to the SIT parm JVMPROFILEDIR

If the JVMSERVER is installed as a part of a bundle,
JVMPROFILE is relative to BUNDLEDIR on the
BUNDLE

Critical Dir...
Java Resources
YoushouldcopysampleJVMPROFILEs
tothedirectoriesunder/var/cicstsif
youwanttousethem.
/usr/lpp/cicsts
/cicsts52
/lib/jvmprofiles
/var/cicsts
/bundles /jvmprofiles
JVMPROFILEDIR
copy
BUNDLEDIRs
CICSsupplied
javafiles
JVMPROFILEs

JVMPROFILE properties

$JAVA_HOME – zFS path to jre install

$WORK_DIR – zFS path to logs and dumps

JVMPROFILE (Liberty) properties

$WLP_INSTALL_DIR – install location wlp

$WLP_USER_DIR – zFS path to server.xml

$WLP_OUTPUT_DIR – Liberty logs and installedApps
JVMPROFILEs

JVMPROFILE properties

$JAVA_HOME – zFS path to jre install

$WORK_DIR – zFS path to logs and dumps

JVMPROFILE (Liberty) properties

$WLP_INSTALL_DIR – install location wlp

$WLP_USER_DIR – zFS path to server.xml

$WLP_OUTPUT_DIR – Liberty logs and installedApps
JVMPROFILE suggestions

JVMPROFILE properties

$JAVA_HOME – zFS path to jre install

$WORK_DIR – Use CICS Temp Dir: /cicslogs/&APPLID;

JVMPROFILE (Liberty) properties

$WLP_INSTALL_DIR – Use USSHOME: &USSHOME;/wlp

$WLP_USER_DIR – Use JVMPROFILEDIR: /&CONFIGROOT;

$WLP_OUTPUT_DIR – Use /cicslogs/&APPLID;/&JVMSERVER;
JTA Logs in server.xml

If you use JTA in Liberty, CICS needs r/w access to the
JTA transaction logs.

But they are critical for WARM restarts of CICS so should
be recoverable

Where do we put them?...
JTA Logs in server.xml

If you use JTA in Liberty, CICS needs r/w access to the
JTA transaction logs.

But they are critical for WARM restarts of CICS so should
be recoverable

Where do we put them?...

Their own recoverable filing system under /cicsjta/...
<transaction transactionLogDirectory="/cicsjta/${com.ibm.cics.jvmserver.applid}/
${com.ibm.cics.jvmserver.name}"/>
CICS Platforms

With the new CICS Platforms we've made it easy...
CICS Platforms

With the new CICS Platforms we've made it easy...
CriticalDir!
CICS Platforms

Explorer is aware
of the platform
home directory
and takes care of
the rest for you!
Summary Table
Resources Attribute
DOCTEMPLATE HFSFILE
URIMAP HFSFILE
TCPIPSERVICE CIPHERS
WEBSERVICE WSBIND
WSDLFILE
ARCHIVEFILE
PIPELINE CONFIGFILE
SHELF
WSDIR
ATOMSERVICE CONFIGFILE
BINDFILE
PROGRAM(Java) JVMCLASS
JVMSERVER JVMPROFILE
JVMPROFILE $JAVA_HOME
$WORK_DIR
$WLP_INSTALL_DIR
$WLP_USER_DIR
$WLP_OUTPUT_DIR
server.xml transactionLogDirectory
BUNDLE BUNDLEDIR
CICSPlatforms PlatformHome
Secure
access
Who needs access to what?
Directory CICS Region Admin
Install Dir read read
Critical Dir read read/write
Temp Dir read/write read/write
•Both user types would also have execute permissions on
directories (not required for files)
Use the UNIX permission flags for Owner, Group and All to control access to your
CICS resources on zFS
Here’s an example of an entry you might see if you listed contents of a zFS directory
drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/
CICS zFS files may require access via 3 classes of user:
CICS regions - region userid
CICS system administraters (humans)
Code management systems (tools)
FilepermissionsinzFS
FilepermissionsinzFS
Use the UNIX permission flags for Owner, Group and All to control access to your
CICS resources on zFS
drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/
Isadirectory
(calledMyBundle)
FilepermissionsinzFS
Use the UNIX permission flags for Owner, Group and All to control access to your
CICS resources on zFS
drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/
Ownedbyusersysadmin
andbygroupCICS
Isadirectory
(calledMyBundle)
FilepermissionsinzFS
Use the UNIX permission flags for Owner, Group and All to control access to your
CICS resources on zFS
drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/
Ownedbyusersysadmin
andbygroupCICS
Isadirectory
(calledMyBundle)
UserSYSADMIN
hasread, write, execute
permissions
FilepermissionsinzFS
Use the UNIX permission flags for Owner, Group and All to control access to your
CICS resources on zFS
drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/
Ownedbyusersysadmin
andbygroupCICS
Isadirectory
(calledMyBundle)
UserSYSADMIN
hasread, write, execute
permissions
AnyuseringroupCICS
hasreadandexecute
permissions
FilepermissionsinzFS
Use the UNIX permission flags for Owner, Group and All to control access to your
CICS resources on zFS
drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/
Ownedbyusersysadmin
andbygroupCICS
Isadirectory
(calledMyBundle)
UserSYSADMIN
hasread, write, execute
permissions
AnyuseringroupCICS
hasreadandexecute
permissions
Anyoneelsehas
nopermissions
UMASK

The file permission bits are set using the UMASK of the
creating process, which signifies the bits that are not set

i.e a umask of 022 causes
− Directories to be created with 755 (rwxr-xr-x) permissions
− Files to be created with 644 (rw-r--r--) –
− By default x permissions are not given for files
Example Setup for Critical Dir

Set permissions of /var/cicsts to allow access by
multiple readers (CICS regions) and a common writer
(administrator)

1. Set the owner to have read/write/execute, this will be the userid
required by zFS to export files into zFS

2. Set the readers to have read/execute access
− > chgrp –R <group> /cicsts
− > chmod –R 750 /cicsts

3. Set default file permission for the FTP daemon to give
writers(owners) rw and readers(group) r
− i.e UMASK 027
− see SYS1.TCPPARMS(FTPDATA)
− Used by CICS Explorer “Export Bundle Project to z/OS USS” process
Multiple writer's problem

A user can be in many groups, but a file has only one group
permission

Meaning that if multiple users need to access the file they must be in
that group, and will all share the same permissions

This means 2 logical groups of users (such as system admins and
CICS regions) can not use UNIX permission bits to be granted access

ACLs provide a solution to this as they allow a more flexible
model

Multiple groups can have file permissions

ACL inheritance can be controlled

However, they may only restrict the access permissions that are defined
by the UNIX permissions bits

RACF CLASS FSSEC

Control using setfacl USS command
PerformanceofzFS

Performance of shared zFS mounted r/w filesystems has been regarded as
an issue (in terms of XCF signalling costs) and function shipping of I/O
between LPARs

Often a problem on JVM startup due to loading of JARs from zFS and
writing of info to OSGi cache directory (under WORK_DIR)

Solutions:

V1R11 provides local read caching – removing overheads for reads

V1R13 provides direct I/O for read and write, removing need to function
ship these commands to the owning LPAR

Or mounting file system locally removes need to function ship I/O

JVM class caching provides ability to cache Java byte codes in a shared
memory area (i.e within LPAR)
•-> Requires APAR PM78799 on CICS TS V4.2 to support class caching
Manage
Change
zFSusagesurvey…
61
ManagingchangestoCICSBundles
CICS Bundle XML should be treated as source code
Changes should be managed and shared using a source code management (SCM)
repository
Dev 1 Dev 2
Check out
Bundle project
from SCM
Deliver
changes
Dev Region Dev
zFS
Dev Region Dev
zFS
Export Bundle to
zFS
To Test and
Production
The CICS Explorer should be
used to make changes to the
Bundles and deploy them to zFS
Install Bundle
resource
SCM
Migrating CICS Bundles from Dev to Test to Production

BUNDLEs should be treated like any other CICS resource that
has a reference to an artefact that lies outside the CSD eg:

PROGRAMS have load modules/java classes

WEBSERVICEs have wsbind files

You should migrate the CICS Bundle XML before the BUNDLE
resource

You wouldn't migrate a new PROGRAM resource before you migrated
the load module for it!
Migrating CICS bundle XML from
Dev to Production
Dev 1 Dev 2
Build bundle
project from
SCM
Dev Region
Dev
zFS
Install Bundle
resource
Dev Region
Dev
zFS
Transfer bundle
to zFS
Test
Regions
Test
Regions
Build bundle
project from
SCM
Test
Regions
Production
Regions
Install Bundle
resource
Install Bundle
resource
Once tests pass ok,
migrate (copy) bundle
from test to production
zFS
Automation
system
Export Bundle to
zFS
Test
zFS
Deliver
changes
Production
zFS
Dev SCM Stream Test SCM Stream
Promote
CICS Explorer
Migrating CICS bundle XML from
Dev to Production
Dev 1 Dev 2
Build bundle
project from
SCM
Dev Region
Dev
zFS
Install Bundle
resource
Dev Region
Dev
zFS
Transfer bundle
to zFS
Test
Regions
Test
Regions
Build bundle
project from
SCM
Test
Regions
Production
Regions
Install Bundle
resource
Install Bundle
resource
Once tests pass ok,
migrate (copy) bundle
from test to production
zFS
Automation
system
Export Bundle to
zFS
Test
zFS
Deliver
changes
Production
zFS
Dev SCM Stream Test SCM Stream
Promote
CICS Explorer
DFHDPLOYDFHDPLOY
CICS Build
Toolkit
CICS Build
Toolkit
Migratingbundles
Option 1: Modify BUNDLEDIR to new zFS
location
Option 2: Use Symlinks to point to the real
bundle location
DevCSD
BUNDLE
DevzFS
CICSBundleXML
TestCSD
BUNDLE
TestzFS
CICSBundleXML
ProdCSD
BUNDLE
ProdzFS
CICSBundleXML
Symlinktoreal
BUNDLEDIR
Promote
Promote
Promote
Promote
Migratingbundles-2
67
Option 3: Use zFS mounts to migrate bundles
DevCSD
BUNDLE
DevzFS
CICSBundleDIR
TestCSD
BUNDLE
TestzFS
CICSBundleDIR
ProdCSD
BUNDLE
ProdzFS
CICSBundleDIR
zOSDatasets
CICS.BUNDLES.MYBUNDLE.V3
CICS.BUNDLES.MYBUNDLE.V2
CICS.BUNDLES.MYBUNDLE.V1
Mount
Mount
Mount
Migratingbundles-3
68
Option 3: Use zFS mounts to migrate bundles
DevCSD
BUNDLE
DevzFS
CICSBundleDIR
TestCSD
BUNDLE
TestzFS
CICSBundleDIR
ProdCSD
BUNDLE
ProdzFS
CICSBundleDIR
Promote
Promote
zOSDatasets
CICS.BUNDLES.MYBUNDLE.V3
CICS.BUNDLES.MYBUNDLE.V2
CICS.BUNDLES.MYBUNDLE.V1
Unmount
Unmount
Unmount
Mount
Mount
Migratingbundles-JVMSERVER
names
When using JVM server you need to have the same JVMSERVERs in all regions to
ensure no changes are needed when migrating CICS bundles project containing
OSGi bundles or Web project
DevRegion
MYJVMSERVER
Dev JVMSERVER
MYJVMSERVER
OSGIBundle
TestRegion
MYJVMSERVER
Test JVMSERVER
MYJVMSERVER
OSGIBundle
Production Region
MYJVMSERVER
Production JVMSERVER
MYJVMSERVER
OSGI Bundle
Defined in the .osgibundle or .warbundle in CICS bundle project
<osgibundle symbolicname="com.ibm.cics.server.examples.hello"
version="1.0.0" jvmserver="DFHJVMS"/>
Summary

A place for everything

Create separate file systems for install, critical and temp artifacts

Have places in those file system for each type of artifact

Consider requirements for sharing across LPARs

Everything in it's place

Put each artifact into it's appropriate place

Use symlinks where necessary

Consider requirement for recovery and backup

Secure access

Set permission bits on each file system to control access

Use ACLs to solve the multiple writer problem

Consider requirements for FTP access

Manage change

Manage changes to zFS artifacts through a SCM

Consider references from zFS files, to minimise changes

More Related Content

What's hot

Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...
Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...
Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...Alex Gorbachev
 
ODA Backup Restore Utility & ODA Rescue Live Disk
ODA Backup Restore Utility & ODA Rescue Live DiskODA Backup Restore Utility & ODA Rescue Live Disk
ODA Backup Restore Utility & ODA Rescue Live DiskRuggero Citton
 
Oracle Solaris 11 Built for Clouds
Oracle Solaris 11 Built for Clouds Oracle Solaris 11 Built for Clouds
Oracle Solaris 11 Built for Clouds Orgad Kimchi
 
Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...
Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...
Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...Lindsey Aitchison
 
gDBClone - Database Clone “onecommand Automation Tool”
gDBClone - Database Clone “onecommand Automation Tool”gDBClone - Database Clone “onecommand Automation Tool”
gDBClone - Database Clone “onecommand Automation Tool”Ruggero Citton
 
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best PracticesOracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best PracticesSven Sandberg
 
Solaris vs Linux
Solaris vs LinuxSolaris vs Linux
Solaris vs LinuxGrigale LTD
 
Oracle 11g R2 RAC implementation and concept
Oracle 11g R2 RAC implementation and conceptOracle 11g R2 RAC implementation and concept
Oracle 11g R2 RAC implementation and conceptSantosh Kangane
 
What's New and Upcoming in HDFS - the Hadoop Distributed File System
What's New and Upcoming in HDFS - the Hadoop Distributed File SystemWhat's New and Upcoming in HDFS - the Hadoop Distributed File System
What's New and Upcoming in HDFS - the Hadoop Distributed File SystemCloudera, Inc.
 
RACATTACK Lab Handbook - Enable Flex Cluster and Flex ASM
RACATTACK Lab Handbook - Enable Flex Cluster and Flex ASMRACATTACK Lab Handbook - Enable Flex Cluster and Flex ASM
RACATTACK Lab Handbook - Enable Flex Cluster and Flex ASMMaaz Anjum
 
HDFS NameNode High Availability
HDFS NameNode High AvailabilityHDFS NameNode High Availability
HDFS NameNode High AvailabilityDataWorks Summit
 
How To Deploy Globally
How To Deploy GloballyHow To Deploy Globally
How To Deploy GloballyAras
 
Flex Your Database on 12c's Flex ASM and Flex Cluster
Flex Your Database on 12c's Flex ASM and Flex ClusterFlex Your Database on 12c's Flex ASM and Flex Cluster
Flex Your Database on 12c's Flex ASM and Flex ClusterMaaz Anjum
 
Sharing experience implementing Direct NFS
Sharing experience implementing Direct NFSSharing experience implementing Direct NFS
Sharing experience implementing Direct NFSYury Velikanov
 
14 Ace 2010 Replication Workshop
14 Ace 2010 Replication Workshop14 Ace 2010 Replication Workshop
14 Ace 2010 Replication WorkshopProdeos
 
Oracle Solaris 11 as a BIG Data Platform Apache Hadoop Use Case
Oracle Solaris 11 as a BIG Data Platform Apache Hadoop Use CaseOracle Solaris 11 as a BIG Data Platform Apache Hadoop Use Case
Oracle Solaris 11 as a BIG Data Platform Apache Hadoop Use CaseOrgad Kimchi
 
AWS Summit 2011: High Availability Database Architectures in AWS Cloud
AWS Summit 2011: High Availability Database Architectures in AWS CloudAWS Summit 2011: High Availability Database Architectures in AWS Cloud
AWS Summit 2011: High Availability Database Architectures in AWS CloudAmazon Web Services
 
ZFS for Databases
ZFS for DatabasesZFS for Databases
ZFS for Databasesahl0003
 

What's hot (20)

Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...
Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...
Oracle 11g New Features Out-of-the-Box by Alex Gorbachev (from Sydney Oracle ...
 
ODA Backup Restore Utility & ODA Rescue Live Disk
ODA Backup Restore Utility & ODA Rescue Live DiskODA Backup Restore Utility & ODA Rescue Live Disk
ODA Backup Restore Utility & ODA Rescue Live Disk
 
Oracle Solaris 11 Built for Clouds
Oracle Solaris 11 Built for Clouds Oracle Solaris 11 Built for Clouds
Oracle Solaris 11 Built for Clouds
 
Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...
Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...
Building an Oracle Grid with Oracle VM on Dell Blade Servers and EqualLogic i...
 
gDBClone - Database Clone “onecommand Automation Tool”
gDBClone - Database Clone “onecommand Automation Tool”gDBClone - Database Clone “onecommand Automation Tool”
gDBClone - Database Clone “onecommand Automation Tool”
 
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best PracticesOracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
 
Solaris vs Linux
Solaris vs LinuxSolaris vs Linux
Solaris vs Linux
 
Oracle 11g R2 RAC implementation and concept
Oracle 11g R2 RAC implementation and conceptOracle 11g R2 RAC implementation and concept
Oracle 11g R2 RAC implementation and concept
 
What's New and Upcoming in HDFS - the Hadoop Distributed File System
What's New and Upcoming in HDFS - the Hadoop Distributed File SystemWhat's New and Upcoming in HDFS - the Hadoop Distributed File System
What's New and Upcoming in HDFS - the Hadoop Distributed File System
 
RACATTACK Lab Handbook - Enable Flex Cluster and Flex ASM
RACATTACK Lab Handbook - Enable Flex Cluster and Flex ASMRACATTACK Lab Handbook - Enable Flex Cluster and Flex ASM
RACATTACK Lab Handbook - Enable Flex Cluster and Flex ASM
 
HDFS NameNode High Availability
HDFS NameNode High AvailabilityHDFS NameNode High Availability
HDFS NameNode High Availability
 
Oracle database 12c asm administration
Oracle database 12c asm administrationOracle database 12c asm administration
Oracle database 12c asm administration
 
How To Deploy Globally
How To Deploy GloballyHow To Deploy Globally
How To Deploy Globally
 
Flex Your Database on 12c's Flex ASM and Flex Cluster
Flex Your Database on 12c's Flex ASM and Flex ClusterFlex Your Database on 12c's Flex ASM and Flex Cluster
Flex Your Database on 12c's Flex ASM and Flex Cluster
 
Sharing experience implementing Direct NFS
Sharing experience implementing Direct NFSSharing experience implementing Direct NFS
Sharing experience implementing Direct NFS
 
14 Ace 2010 Replication Workshop
14 Ace 2010 Replication Workshop14 Ace 2010 Replication Workshop
14 Ace 2010 Replication Workshop
 
Oracle Solaris 11 as a BIG Data Platform Apache Hadoop Use Case
Oracle Solaris 11 as a BIG Data Platform Apache Hadoop Use CaseOracle Solaris 11 as a BIG Data Platform Apache Hadoop Use Case
Oracle Solaris 11 as a BIG Data Platform Apache Hadoop Use Case
 
Curriculum vitae
Curriculum vitaeCurriculum vitae
Curriculum vitae
 
AWS Summit 2011: High Availability Database Architectures in AWS Cloud
AWS Summit 2011: High Availability Database Architectures in AWS CloudAWS Summit 2011: High Availability Database Architectures in AWS Cloud
AWS Summit 2011: High Availability Database Architectures in AWS Cloud
 
ZFS for Databases
ZFS for DatabasesZFS for Databases
ZFS for Databases
 

Viewers also liked

Sysplex: Windows MultiPoint Server 2011
Sysplex: Windows MultiPoint Server 2011Sysplex: Windows MultiPoint Server 2011
Sysplex: Windows MultiPoint Server 2011juandanielp
 
S104 twist and cloud
S104 twist and cloudS104 twist and cloud
S104 twist and cloudnick_garrod
 
محدودیت ها در تحقیقات بازاریابی
محدودیت ها در تحقیقات بازاریابیمحدودیت ها در تحقیقات بازاریابی
محدودیت ها در تحقیقات بازاریابیبازآران
 
IBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts wsIBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts wsnick_garrod
 
4156 Twist and cloud-how ibm customers make cics dance
4156 Twist and cloud-how ibm customers make cics dance4156 Twist and cloud-how ibm customers make cics dance
4156 Twist and cloud-how ibm customers make cics dancenick_garrod
 
SHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalabilitySHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalabilitynick_garrod
 
Живописной науки мастер
Живописной науки  мастерЖивописной науки  мастер
Живописной науки мастерBiblioteka-22
 
3983 cics java real life projects
3983   cics java real life projects3983   cics java real life projects
3983 cics java real life projectsnick_garrod
 
IBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphoneIBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphonenick_garrod
 
SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile PricingSHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricingnick_garrod
 
SHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd NetworkingSHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd Networkingnick_garrod
 
designing windows user experiences
 designing windows user experiences designing windows user experiences
designing windows user experiencesLaila Omran
 
SHARE 2014 Pittsburgh, CICS Workload Management
SHARE 2014 Pittsburgh, CICS Workload Management SHARE 2014 Pittsburgh, CICS Workload Management
SHARE 2014 Pittsburgh, CICS Workload Management nick_garrod
 
Facebook the social network
Facebook the social networkFacebook the social network
Facebook the social networkgeersb
 
2844 CICS Policy Based Management – There’s a new sheriff in town
2844 CICS Policy Based Management – There’s a new sheriff in town2844 CICS Policy Based Management – There’s a new sheriff in town
2844 CICS Policy Based Management – There’s a new sheriff in townnick_garrod
 
Ensayodecortedirecto 130826121403-phpapp01-1
Ensayodecortedirecto 130826121403-phpapp01-1Ensayodecortedirecto 130826121403-phpapp01-1
Ensayodecortedirecto 130826121403-phpapp01-1Yordi Dipas Ganboa
 

Viewers also liked (18)

Sysplex: Windows MultiPoint Server 2011
Sysplex: Windows MultiPoint Server 2011Sysplex: Windows MultiPoint Server 2011
Sysplex: Windows MultiPoint Server 2011
 
Parallel sysplex
Parallel sysplexParallel sysplex
Parallel sysplex
 
S104 twist and cloud
S104 twist and cloudS104 twist and cloud
S104 twist and cloud
 
محدودیت ها در تحقیقات بازاریابی
محدودیت ها در تحقیقات بازاریابیمحدودیت ها در تحقیقات بازاریابی
محدودیت ها در تحقیقات بازاریابی
 
IBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts wsIBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts ws
 
4156 Twist and cloud-how ibm customers make cics dance
4156 Twist and cloud-how ibm customers make cics dance4156 Twist and cloud-how ibm customers make cics dance
4156 Twist and cloud-how ibm customers make cics dance
 
SHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalabilitySHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalability
 
Живописной науки мастер
Живописной науки  мастерЖивописной науки  мастер
Живописной науки мастер
 
3983 cics java real life projects
3983   cics java real life projects3983   cics java real life projects
3983 cics java real life projects
 
2829 liberty
2829 liberty2829 liberty
2829 liberty
 
IBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphoneIBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphone
 
SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile PricingSHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricing
 
SHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd NetworkingSHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd Networking
 
designing windows user experiences
 designing windows user experiences designing windows user experiences
designing windows user experiences
 
SHARE 2014 Pittsburgh, CICS Workload Management
SHARE 2014 Pittsburgh, CICS Workload Management SHARE 2014 Pittsburgh, CICS Workload Management
SHARE 2014 Pittsburgh, CICS Workload Management
 
Facebook the social network
Facebook the social networkFacebook the social network
Facebook the social network
 
2844 CICS Policy Based Management – There’s a new sheriff in town
2844 CICS Policy Based Management – There’s a new sheriff in town2844 CICS Policy Based Management – There’s a new sheriff in town
2844 CICS Policy Based Management – There’s a new sheriff in town
 
Ensayodecortedirecto 130826121403-phpapp01-1
Ensayodecortedirecto 130826121403-phpapp01-1Ensayodecortedirecto 130826121403-phpapp01-1
Ensayodecortedirecto 130826121403-phpapp01-1
 

Similar to SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS

Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)
Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)
Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)VMware Tanzu
 
Make stateful apps in Kubernetes a no brainer with Pure Storage and GitOps
Make stateful apps in Kubernetes a no brainer with Pure Storage and GitOpsMake stateful apps in Kubernetes a no brainer with Pure Storage and GitOps
Make stateful apps in Kubernetes a no brainer with Pure Storage and GitOpsWeaveworks
 
Making MySQL highly available using Oracle Grid Infrastructure
Making MySQL highly available using Oracle Grid InfrastructureMaking MySQL highly available using Oracle Grid Infrastructure
Making MySQL highly available using Oracle Grid InfrastructureIlmar Kerm
 
Case Study _Cloud Native Transformation Deploying Integration workloads to AK...
Case Study _Cloud Native Transformation Deploying Integration workloads to AK...Case Study _Cloud Native Transformation Deploying Integration workloads to AK...
Case Study _Cloud Native Transformation Deploying Integration workloads to AK...Srikanth Prathipati
 
Introduction to JumpStart
Introduction to JumpStartIntroduction to JumpStart
Introduction to JumpStartScott McDermott
 
Cloud Meetup - Automation in the Cloud
Cloud Meetup - Automation in the CloudCloud Meetup - Automation in the Cloud
Cloud Meetup - Automation in the Cloudpetriojala123
 
Leveraging Open Source to Manage SAN Performance
Leveraging Open Source to Manage SAN PerformanceLeveraging Open Source to Manage SAN Performance
Leveraging Open Source to Manage SAN Performancebrettallison
 
OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...
OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...
OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...NETWAYS
 
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!SolarWinds
 
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!SolarWinds
 
Oracle Solaris 11.1 New Features
Oracle Solaris 11.1 New FeaturesOracle Solaris 11.1 New Features
Oracle Solaris 11.1 New FeaturesOrgad Kimchi
 
What’s New in Syncsort Ironstream 2.1
What’s New in Syncsort Ironstream 2.1What’s New in Syncsort Ironstream 2.1
What’s New in Syncsort Ironstream 2.1Precisely
 
Solid fire cloudstack storage overview - CloudStack European User Group
Solid fire cloudstack storage overview - CloudStack European User GroupSolid fire cloudstack storage overview - CloudStack European User Group
Solid fire cloudstack storage overview - CloudStack European User GroupShapeBlue
 
CloudStack Meetup London - Primary Storage Presentation by SolidFire
CloudStack Meetup London - Primary Storage Presentation by SolidFire CloudStack Meetup London - Primary Storage Presentation by SolidFire
CloudStack Meetup London - Primary Storage Presentation by SolidFire NetApp
 
Ibm informix security functionality overview
Ibm informix security functionality overviewIbm informix security functionality overview
Ibm informix security functionality overviewBeGooden-IT Consulting
 
Installing oracle grid infrastructure and database 12c r1
Installing oracle grid infrastructure and database 12c r1Installing oracle grid infrastructure and database 12c r1
Installing oracle grid infrastructure and database 12c r1Voeurng Sovann
 
Distributed Monitoring and Cloud Scaling
Distributed Monitoring and Cloud ScalingDistributed Monitoring and Cloud Scaling
Distributed Monitoring and Cloud ScalingFernando Honig
 
Hints for a successful hfs to zfs migration
Hints for a successful hfs to zfs migrationHints for a successful hfs to zfs migration
Hints for a successful hfs to zfs migrationsatish090909
 
Custom Buildpacks and Data Services
Custom Buildpacks and Data ServicesCustom Buildpacks and Data Services
Custom Buildpacks and Data ServicesTom Kranz
 

Similar to SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS (20)

Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)
Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)
Part 4: Custom Buildpacks and Data Services (Pivotal Cloud Platform Roadshow)
 
Make stateful apps in Kubernetes a no brainer with Pure Storage and GitOps
Make stateful apps in Kubernetes a no brainer with Pure Storage and GitOpsMake stateful apps in Kubernetes a no brainer with Pure Storage and GitOps
Make stateful apps in Kubernetes a no brainer with Pure Storage and GitOps
 
Making MySQL highly available using Oracle Grid Infrastructure
Making MySQL highly available using Oracle Grid InfrastructureMaking MySQL highly available using Oracle Grid Infrastructure
Making MySQL highly available using Oracle Grid Infrastructure
 
Case Study _Cloud Native Transformation Deploying Integration workloads to AK...
Case Study _Cloud Native Transformation Deploying Integration workloads to AK...Case Study _Cloud Native Transformation Deploying Integration workloads to AK...
Case Study _Cloud Native Transformation Deploying Integration workloads to AK...
 
Introduction to JumpStart
Introduction to JumpStartIntroduction to JumpStart
Introduction to JumpStart
 
Cloud Meetup - Automation in the Cloud
Cloud Meetup - Automation in the CloudCloud Meetup - Automation in the Cloud
Cloud Meetup - Automation in the Cloud
 
Leveraging Open Source to Manage SAN Performance
Leveraging Open Source to Manage SAN PerformanceLeveraging Open Source to Manage SAN Performance
Leveraging Open Source to Manage SAN Performance
 
OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...
OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...
OSMC 2013 | Distributed Monitoring and Cloud Scaling for Web Apps by Fernando...
 
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
 
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
 
Oracle Solaris 11.1 New Features
Oracle Solaris 11.1 New FeaturesOracle Solaris 11.1 New Features
Oracle Solaris 11.1 New Features
 
What’s New in Syncsort Ironstream 2.1
What’s New in Syncsort Ironstream 2.1What’s New in Syncsort Ironstream 2.1
What’s New in Syncsort Ironstream 2.1
 
Solid fire cloudstack storage overview - CloudStack European User Group
Solid fire cloudstack storage overview - CloudStack European User GroupSolid fire cloudstack storage overview - CloudStack European User Group
Solid fire cloudstack storage overview - CloudStack European User Group
 
CloudStack Meetup London - Primary Storage Presentation by SolidFire
CloudStack Meetup London - Primary Storage Presentation by SolidFire CloudStack Meetup London - Primary Storage Presentation by SolidFire
CloudStack Meetup London - Primary Storage Presentation by SolidFire
 
Ibm informix security functionality overview
Ibm informix security functionality overviewIbm informix security functionality overview
Ibm informix security functionality overview
 
Installing oracle grid infrastructure and database 12c r1
Installing oracle grid infrastructure and database 12c r1Installing oracle grid infrastructure and database 12c r1
Installing oracle grid infrastructure and database 12c r1
 
Distributed Monitoring and Cloud Scaling
Distributed Monitoring and Cloud ScalingDistributed Monitoring and Cloud Scaling
Distributed Monitoring and Cloud Scaling
 
Smpe
SmpeSmpe
Smpe
 
Hints for a successful hfs to zfs migration
Hints for a successful hfs to zfs migrationHints for a successful hfs to zfs migration
Hints for a successful hfs to zfs migration
 
Custom Buildpacks and Data Services
Custom Buildpacks and Data ServicesCustom Buildpacks and Data Services
Custom Buildpacks and Data Services
 

More from nick_garrod

2844 inter connect cics policy (2844)
2844  inter connect cics policy (2844)2844  inter connect cics policy (2844)
2844 inter connect cics policy (2844)nick_garrod
 
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)nick_garrod
 
Enhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilitiesEnhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilitiesnick_garrod
 
Api management customer
Api management customerApi management customer
Api management customernick_garrod
 
Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)nick_garrod
 
S111 cics connectivity in devops
S111   cics connectivity in devopsS111   cics connectivity in devops
S111 cics connectivity in devopsnick_garrod
 
S110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraterniteS110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraternitenick_garrod
 
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?nick_garrod
 
S107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloudS107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloudnick_garrod
 
S106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cicsS106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cicsnick_garrod
 
S105 performance
S105 performanceS105 performance
S105 performancenick_garrod
 
S103 cics cloud and dev ops agility
S103 cics cloud and dev ops agilityS103 cics cloud and dev ops agility
S103 cics cloud and dev ops agilitynick_garrod
 
S102 cics the future is closer abridged
S102 cics the future is closer abridgedS102 cics the future is closer abridged
S102 cics the future is closer abridgednick_garrod
 
S101 cics what's in it for you
S101   cics what's in it for you S101   cics what's in it for you
S101 cics what's in it for you nick_garrod
 
Share seattle liberty
Share seattle libertyShare seattle liberty
Share seattle libertynick_garrod
 
Share seattle health_center
Share seattle health_centerShare seattle health_center
Share seattle health_centernick_garrod
 
Share seattle cics cloud
Share seattle cics cloudShare seattle cics cloud
Share seattle cics cloudnick_garrod
 
SHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overviewSHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overviewnick_garrod
 
Share cics policy (2844)
Share cics policy (2844)Share cics policy (2844)
Share cics policy (2844)nick_garrod
 

More from nick_garrod (20)

2844 inter connect cics policy (2844)
2844  inter connect cics policy (2844)2844  inter connect cics policy (2844)
2844 inter connect cics policy (2844)
 
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
 
Enhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilitiesEnhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilities
 
Api management customer
Api management customerApi management customer
Api management customer
 
Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)
 
S111 cics connectivity in devops
S111   cics connectivity in devopsS111   cics connectivity in devops
S111 cics connectivity in devops
 
S110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraterniteS110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraternite
 
S109 cics-java
S109 cics-javaS109 cics-java
S109 cics-java
 
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
 
S107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloudS107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloud
 
S106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cicsS106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cics
 
S105 performance
S105 performanceS105 performance
S105 performance
 
S103 cics cloud and dev ops agility
S103 cics cloud and dev ops agilityS103 cics cloud and dev ops agility
S103 cics cloud and dev ops agility
 
S102 cics the future is closer abridged
S102 cics the future is closer abridgedS102 cics the future is closer abridged
S102 cics the future is closer abridged
 
S101 cics what's in it for you
S101   cics what's in it for you S101   cics what's in it for you
S101 cics what's in it for you
 
Share seattle liberty
Share seattle libertyShare seattle liberty
Share seattle liberty
 
Share seattle health_center
Share seattle health_centerShare seattle health_center
Share seattle health_center
 
Share seattle cics cloud
Share seattle cics cloudShare seattle cics cloud
Share seattle cics cloud
 
SHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overviewSHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overview
 
Share cics policy (2844)
Share cics policy (2844)Share cics policy (2844)
Share cics policy (2844)
 

Recently uploaded

Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 

SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS

  • 1. Taming the Beast – Best Practices for zFS with CICS Phil_Wakelin@uk.ibm.com CICS Strategy & Design, IBM Hursley UK
  • 2. Disclaimer IBM’s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM’s sole discretion. Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing decision. The information mentioned regarding potential future products is not a commitment, promise, or legal obligation to deliver any material, code or functionality. Information about potential future products may not be incorporated into any contract. The development, release, and timing of any future features or functionality described for our products remains at our sole discretion. Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user’s job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 14. Types of CICS zFS files Install −CICS stuff provided by IBM −CICS Programs and Samples −May change during APARs
  • 15. Types of CICS zFS files Install −CICS stuff provided by IBM −CICS Programs and Samples −May change during APARs Critical −Things that define your applications and environments −Programs, Properties and Config files etc −Should be considered critical and be recoverable
  • 16. Types of CICS zFS files Install − CICS stuff provided by IBM − CICS Programs and Samples − May change during APARs Critical − Things that define your applications and environments − Programs, Properties and Config files etc − Should be considered critical and be recoverable Temp − Things that applications create or write to at runtime − Non critical, messages and logs files etc
  • 17. Where should they go? Install −Default: /usr/lpp/cicsts52 −SIT Parm: USSHOME Critical −Suggest using /var/cicsts/... −May have sub directories per CICSPlex or region −Use directories to group common assets eg all web files Temp −Suggest using a separate place eg /cicslogs/<APPLID>... −Typically have one per region −May need to clean out periodically
  • 18. Setup for Install Dir Create release specific directory structure − /usr/lpp/cicsts is created ONCE for all releases (read only) − Depending on SMP/E target zone structure − You may create variants of /cicsts52
  • 19. Setup for Install Dir  Directories under /cicsts52 − docs − IBM − JVMPROFILES − lib − pipelines − samples − schemas − ...
  • 20. Setup for Install Dir  SIT Parms  USSHOME − The name and path of the root directory for CICS files − Default: /usr/lpp/cicsts/cicsts52
  • 21. Setup for Critical Dir  Create data set for usage as /var/cicsts  If sharing zFS across a sysplex − Mount data set onto root filing system as /cicsts as a r/w filing system − On each LPAR create symbolic link to link /var/cicsts to /cicsts (/var is always a symlink to /<LPAR>/var) − > ln -s /cicsts /var/cicsts  If not sharing zFS − Mount data set onto /var as /var/cicsts
  • 22. Setup for Critical Dir  SIT Parms  USSCONFIG − The name and path of the directory for CICS config files − Default: /var/cicsts/dfhconfig  JVMPROFILEDIR − The directory name for the JVM profiles − Suggest: /var/cicsts/jvmprofiles − Sample profiles DFHJVMAX and DFHOSGI must be copied to here (and edited) if you want to use them
  • 23. Setup for Temp Dirs  Give a z/OS UNIX User ID to each CICS region user ID  Set up a Temp Dir on zFS for each of your CICS regions (eg /cicslogs/<APPLID>) − Each Temp Dir should be a separate filing system each backed by their own dataset − Give each region's User ID r/w permissions to their directory  Choose a z/OS UNIX Group ID (GID) for the RACF group, and assign the it to the RACF Group  Make sure that each CICS region user ID connects to the RACF group that you choose
  • 26. DOCTEMPLATEs, URIMAPs and TCPIPSERVICES  DOCTEMPLATE attribute  HFSFILE − zFS file containing the template (when it resides in zFS)  URIMAP attribute  HFSFILE − zFS file that forms the body of a static response to an HTTP request from a Web Client  TCPIPSERVICE attribute  CIPHERS − zFS file that contains the SSL cipher suite specification − Relative to USSCONFIG
  • 27. DOCTEMPLATEs, URIMAPs and TCPIPSERVICES  DOCTEMPLATE attribute  HFSFILE − zFS file containing the template (when it resides in zFS)  URIMAP attribute  HFSFILE − zFS file that forms the body of a static response to an HTTP request from a Web Client  TCPIPSERVICE attribute  CIPHERS − zFS file that contains the SSL cipher suite specification − Relative to USSCONFIG  Put all of these in the Critical Dir!
  • 28. WEBSERVICEs  WEBSERVICE attributes  WSBIND − zFS file name of web serivce binding file  WSDLFILE − zFS file name of the WSDL file  ARCHIVEFILE − zFS file name of the zip file that contains the WDSL
  • 29. WEBSERVICEs  WEBSERVICE attributes  WSBIND − zFS file name of web serivce binding file  WSDLFILE − zFS file name of the WSDL file  ARCHIVEFILE − zFS file name of the zip file that contains the WDSL  Put all of these in the Critical Dir!
  • 30. PIPELINEs  PIPELINE attributes  CONFIGFILE − ZFS file that defines processing nodes  SHELF* − Directory for CICS to store installed artifacts (may be shared by multiple CICS Regions)  WSDIR − Directory for WSDL and WSBIND files that are to be installed into CICS
  • 31. PIPELINEs  PIPELINE attributes  CONFIGFILE − ZFS file that defines processing nodes  SHELF* − Directory for CICS to store installed artifacts (may be shared by multiple CICS Regions)  WSDIR − Directory for WSDL and WSBIND files that are to be installed into CICS  Put all of these in the Critical Dir! * Recoveryofshelfdirectory shouldbeconsideredcritical resourceforWARMrestartif usingaCSDdefined WEBSERVICE(asopposedtoa pipelinescan)
  • 32. BUNDLEs  BUNDLE attribute  BUNDLEDIR – zFS path to bundle directory
  • 33. BUNDLEs  BUNDLE attribute  BUNDLEDIR – zFS path to bundle directory  Critical Dir again!
  • 34. Java Resources  PROGRAM attribute  JVMCLASS − Name of service defined in OSGI bundle, in a CICS Bundle − Contained in BUNDLEDIR on the BUNDLE  JVMSERVER attribute  JVMPROFILE − zFS file name of the JVMPROFILE − Relative to the SIT parm JVMPROFILEDIR  If the JVMSERVER is installed as a part of a bundle, JVMPROFILE is relative to BUNDLEDIR on the BUNDLE
  • 35. Java Resources  PROGRAM attribute  JVMCLASS − Name of service defined in OSGI bundle, in a CICS Bundle − Contained in BUNDLEDIR on the BUNDLE  JVMSERVER attribute  JVMPROFILE − zFS file name of the JVMPROFILE − Relative to the SIT parm JVMPROFILEDIR  If the JVMSERVER is installed as a part of a bundle, JVMPROFILE is relative to BUNDLEDIR on the BUNDLE  Critical Dir...
  • 37. JVMPROFILEs  JVMPROFILE properties  $JAVA_HOME – zFS path to jre install  $WORK_DIR – zFS path to logs and dumps  JVMPROFILE (Liberty) properties  $WLP_INSTALL_DIR – install location wlp  $WLP_USER_DIR – zFS path to server.xml  $WLP_OUTPUT_DIR – Liberty logs and installedApps
  • 38. JVMPROFILEs  JVMPROFILE properties  $JAVA_HOME – zFS path to jre install  $WORK_DIR – zFS path to logs and dumps  JVMPROFILE (Liberty) properties  $WLP_INSTALL_DIR – install location wlp  $WLP_USER_DIR – zFS path to server.xml  $WLP_OUTPUT_DIR – Liberty logs and installedApps
  • 39. JVMPROFILE suggestions  JVMPROFILE properties  $JAVA_HOME – zFS path to jre install  $WORK_DIR – Use CICS Temp Dir: /cicslogs/&APPLID;  JVMPROFILE (Liberty) properties  $WLP_INSTALL_DIR – Use USSHOME: &USSHOME;/wlp  $WLP_USER_DIR – Use JVMPROFILEDIR: /&CONFIGROOT;  $WLP_OUTPUT_DIR – Use /cicslogs/&APPLID;/&JVMSERVER;
  • 40. JTA Logs in server.xml  If you use JTA in Liberty, CICS needs r/w access to the JTA transaction logs.  But they are critical for WARM restarts of CICS so should be recoverable  Where do we put them?...
  • 41. JTA Logs in server.xml  If you use JTA in Liberty, CICS needs r/w access to the JTA transaction logs.  But they are critical for WARM restarts of CICS so should be recoverable  Where do we put them?...  Their own recoverable filing system under /cicsjta/... <transaction transactionLogDirectory="/cicsjta/${com.ibm.cics.jvmserver.applid}/ ${com.ibm.cics.jvmserver.name}"/>
  • 42. CICS Platforms  With the new CICS Platforms we've made it easy...
  • 43. CICS Platforms  With the new CICS Platforms we've made it easy... CriticalDir!
  • 44. CICS Platforms  Explorer is aware of the platform home directory and takes care of the rest for you!
  • 45. Summary Table Resources Attribute DOCTEMPLATE HFSFILE URIMAP HFSFILE TCPIPSERVICE CIPHERS WEBSERVICE WSBIND WSDLFILE ARCHIVEFILE PIPELINE CONFIGFILE SHELF WSDIR ATOMSERVICE CONFIGFILE BINDFILE PROGRAM(Java) JVMCLASS JVMSERVER JVMPROFILE JVMPROFILE $JAVA_HOME $WORK_DIR $WLP_INSTALL_DIR $WLP_USER_DIR $WLP_OUTPUT_DIR server.xml transactionLogDirectory BUNDLE BUNDLEDIR CICSPlatforms PlatformHome
  • 47. Who needs access to what? Directory CICS Region Admin Install Dir read read Critical Dir read read/write Temp Dir read/write read/write •Both user types would also have execute permissions on directories (not required for files)
  • 48. Use the UNIX permission flags for Owner, Group and All to control access to your CICS resources on zFS Here’s an example of an entry you might see if you listed contents of a zFS directory drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/ CICS zFS files may require access via 3 classes of user: CICS regions - region userid CICS system administraters (humans) Code management systems (tools) FilepermissionsinzFS
  • 49. FilepermissionsinzFS Use the UNIX permission flags for Owner, Group and All to control access to your CICS resources on zFS drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/ Isadirectory (calledMyBundle)
  • 50. FilepermissionsinzFS Use the UNIX permission flags for Owner, Group and All to control access to your CICS resources on zFS drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/ Ownedbyusersysadmin andbygroupCICS Isadirectory (calledMyBundle)
  • 51. FilepermissionsinzFS Use the UNIX permission flags for Owner, Group and All to control access to your CICS resources on zFS drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/ Ownedbyusersysadmin andbygroupCICS Isadirectory (calledMyBundle) UserSYSADMIN hasread, write, execute permissions
  • 52. FilepermissionsinzFS Use the UNIX permission flags for Owner, Group and All to control access to your CICS resources on zFS drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/ Ownedbyusersysadmin andbygroupCICS Isadirectory (calledMyBundle) UserSYSADMIN hasread, write, execute permissions AnyuseringroupCICS hasreadandexecute permissions
  • 53. FilepermissionsinzFS Use the UNIX permission flags for Owner, Group and All to control access to your CICS resources on zFS drwxr-x--- 2 SYSADMIN CICS 8192 May 10 14:52 MyBundle/ Ownedbyusersysadmin andbygroupCICS Isadirectory (calledMyBundle) UserSYSADMIN hasread, write, execute permissions AnyuseringroupCICS hasreadandexecute permissions Anyoneelsehas nopermissions
  • 54. UMASK  The file permission bits are set using the UMASK of the creating process, which signifies the bits that are not set  i.e a umask of 022 causes − Directories to be created with 755 (rwxr-xr-x) permissions − Files to be created with 644 (rw-r--r--) – − By default x permissions are not given for files
  • 55. Example Setup for Critical Dir  Set permissions of /var/cicsts to allow access by multiple readers (CICS regions) and a common writer (administrator)  1. Set the owner to have read/write/execute, this will be the userid required by zFS to export files into zFS  2. Set the readers to have read/execute access − > chgrp –R <group> /cicsts − > chmod –R 750 /cicsts  3. Set default file permission for the FTP daemon to give writers(owners) rw and readers(group) r − i.e UMASK 027 − see SYS1.TCPPARMS(FTPDATA) − Used by CICS Explorer “Export Bundle Project to z/OS USS” process
  • 56. Multiple writer's problem  A user can be in many groups, but a file has only one group permission  Meaning that if multiple users need to access the file they must be in that group, and will all share the same permissions  This means 2 logical groups of users (such as system admins and CICS regions) can not use UNIX permission bits to be granted access  ACLs provide a solution to this as they allow a more flexible model  Multiple groups can have file permissions  ACL inheritance can be controlled  However, they may only restrict the access permissions that are defined by the UNIX permissions bits  RACF CLASS FSSEC  Control using setfacl USS command
  • 57. PerformanceofzFS  Performance of shared zFS mounted r/w filesystems has been regarded as an issue (in terms of XCF signalling costs) and function shipping of I/O between LPARs  Often a problem on JVM startup due to loading of JARs from zFS and writing of info to OSGi cache directory (under WORK_DIR)  Solutions:  V1R11 provides local read caching – removing overheads for reads  V1R13 provides direct I/O for read and write, removing need to function ship these commands to the owning LPAR  Or mounting file system locally removes need to function ship I/O  JVM class caching provides ability to cache Java byte codes in a shared memory area (i.e within LPAR) •-> Requires APAR PM78799 on CICS TS V4.2 to support class caching
  • 60. ManagingchangestoCICSBundles CICS Bundle XML should be treated as source code Changes should be managed and shared using a source code management (SCM) repository Dev 1 Dev 2 Check out Bundle project from SCM Deliver changes Dev Region Dev zFS Dev Region Dev zFS Export Bundle to zFS To Test and Production The CICS Explorer should be used to make changes to the Bundles and deploy them to zFS Install Bundle resource SCM
  • 61. Migrating CICS Bundles from Dev to Test to Production  BUNDLEs should be treated like any other CICS resource that has a reference to an artefact that lies outside the CSD eg:  PROGRAMS have load modules/java classes  WEBSERVICEs have wsbind files  You should migrate the CICS Bundle XML before the BUNDLE resource  You wouldn't migrate a new PROGRAM resource before you migrated the load module for it!
  • 62. Migrating CICS bundle XML from Dev to Production Dev 1 Dev 2 Build bundle project from SCM Dev Region Dev zFS Install Bundle resource Dev Region Dev zFS Transfer bundle to zFS Test Regions Test Regions Build bundle project from SCM Test Regions Production Regions Install Bundle resource Install Bundle resource Once tests pass ok, migrate (copy) bundle from test to production zFS Automation system Export Bundle to zFS Test zFS Deliver changes Production zFS Dev SCM Stream Test SCM Stream Promote CICS Explorer
  • 63. Migrating CICS bundle XML from Dev to Production Dev 1 Dev 2 Build bundle project from SCM Dev Region Dev zFS Install Bundle resource Dev Region Dev zFS Transfer bundle to zFS Test Regions Test Regions Build bundle project from SCM Test Regions Production Regions Install Bundle resource Install Bundle resource Once tests pass ok, migrate (copy) bundle from test to production zFS Automation system Export Bundle to zFS Test zFS Deliver changes Production zFS Dev SCM Stream Test SCM Stream Promote CICS Explorer DFHDPLOYDFHDPLOY CICS Build Toolkit CICS Build Toolkit
  • 64. Migratingbundles Option 1: Modify BUNDLEDIR to new zFS location Option 2: Use Symlinks to point to the real bundle location DevCSD BUNDLE DevzFS CICSBundleXML TestCSD BUNDLE TestzFS CICSBundleXML ProdCSD BUNDLE ProdzFS CICSBundleXML Symlinktoreal BUNDLEDIR Promote Promote Promote Promote
  • 65. Migratingbundles-2 67 Option 3: Use zFS mounts to migrate bundles DevCSD BUNDLE DevzFS CICSBundleDIR TestCSD BUNDLE TestzFS CICSBundleDIR ProdCSD BUNDLE ProdzFS CICSBundleDIR zOSDatasets CICS.BUNDLES.MYBUNDLE.V3 CICS.BUNDLES.MYBUNDLE.V2 CICS.BUNDLES.MYBUNDLE.V1 Mount Mount Mount
  • 66. Migratingbundles-3 68 Option 3: Use zFS mounts to migrate bundles DevCSD BUNDLE DevzFS CICSBundleDIR TestCSD BUNDLE TestzFS CICSBundleDIR ProdCSD BUNDLE ProdzFS CICSBundleDIR Promote Promote zOSDatasets CICS.BUNDLES.MYBUNDLE.V3 CICS.BUNDLES.MYBUNDLE.V2 CICS.BUNDLES.MYBUNDLE.V1 Unmount Unmount Unmount Mount Mount
  • 67. Migratingbundles-JVMSERVER names When using JVM server you need to have the same JVMSERVERs in all regions to ensure no changes are needed when migrating CICS bundles project containing OSGi bundles or Web project DevRegion MYJVMSERVER Dev JVMSERVER MYJVMSERVER OSGIBundle TestRegion MYJVMSERVER Test JVMSERVER MYJVMSERVER OSGIBundle Production Region MYJVMSERVER Production JVMSERVER MYJVMSERVER OSGI Bundle Defined in the .osgibundle or .warbundle in CICS bundle project <osgibundle symbolicname="com.ibm.cics.server.examples.hello" version="1.0.0" jvmserver="DFHJVMS"/>
  • 68. Summary  A place for everything  Create separate file systems for install, critical and temp artifacts  Have places in those file system for each type of artifact  Consider requirements for sharing across LPARs  Everything in it's place  Put each artifact into it's appropriate place  Use symlinks where necessary  Consider requirement for recovery and backup  Secure access  Set permission bits on each file system to control access  Use ACLs to solve the multiple writer problem  Consider requirements for FTP access  Manage change  Manage changes to zFS artifacts through a SCM  Consider references from zFS files, to minimise changes

Editor's Notes

  1. Hierarchical, Powerful Familiar – Permissons, structures, UNIX, Java, Web etc Flexible – double edged sword...
  2. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  3. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  4. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  5. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  6. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  7. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  8. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  9. Bits added over time Grown organically Go in blind or without a plan and you can end up in an unmanageable mess (mess room analogy)
  10. Tidy the room! Everything in it&amp;apos;s place Space for more things as they come along Locks on the right draws and cupboards
  11. Move this to zfs ppt
  12. Move this to zfs ppt