How do I deploy CA LDAP Server for z/OS from one system to another without having CA MSM available?
search cancel

How do I deploy CA LDAP Server for z/OS from one system to another without having CA MSM available?

book

Article ID: 50744

calendar_today

Updated On:

Products

ACF2 ACF2 - DB2 Option ACF2 for zVM ACF2 - z/OS ACF2 - MISC 24X7 High-Availability Manager for DB2 for z/OS Batch Processor Compile QQF Data Compressor for DB2 for z/OS CA Unicenter NSM RC/Update for DB2 for z/OS DB2 TOOLS- DATABASE MISC PanApt PanAudit Top Secret Top Secret - LDAP

Issue/Introduction

 

CA MSM is the preferred mechanism to install and deploy CA LDAP Server for z/OS. If you are unable to use it for this function you can install CA LDAP Server on one system and then copy the directories to another system using the pax command.

 

 

Environment

Release:
Component: ACFLDP

Resolution

To copy the install directory and any sub-directories use the Unix System Services pax command as follows on your originating system enter OMVS in TSO.

OMVS
mkdir -m 777 /usr/lpp/test              (this will create a directory that will contain the pax file archive)
cd /usr/lpp/caldapr14                   (change directory to the directory where CA LDAP Server for z/OS is installed)
pax -w -f /usr/lpp/test/archive.pax *   (issue the pax command to archive  /usr/lpp/caldapr14 and all its sub-directories)

This will pax everything in /usr/lpp/caldapr14 and put it into a binary file called archive.pax in directory /usr/lpp/test

On the remote system create a directory that will be the install directory for CA LDAP Server.

OMVS
mkdir -m 755 /usr/lpp/caldapr14

Then ftp the file from your local system to your remote system in binary into /usr/lpp/caldapr14/archive.pax

Then go into omvs on the remote system and enter the following commands:

OMVS
cd /usr/lpp/caldapr14         (change directory to the directory where CA LDAP Server for z/OS will be installed)
pax -rvf archive.pax          (this will unpax the ftp'd file into  /usr/lpp/caldapr14)

The original directory and its subdirectories will be unpaxed.