Previous Topic: Configure the Linux Syslog Daemon

Next Topic: Starting Your Product

Configure Linux Agents

After you install the Linux agent software on the Linux system, you configure the agents for communication with the z/VM host and the z/OS region.

Follow these steps:

  1. Enable the Linux agent to issue z/VM CP commands:
    1. Enter the following command:
      modprobe vmcp
      

      The Linux agent can issue CP commands in the current session.

    2. Add the command in the /etc/init.d/boot.local (SuSE) or /etc/rc.local (Red Hat) file.

      The Linux agent can issue CP commands the next time the Linux system starts.

  2. Update the SOLVE service in the xinetd configuration:
    1. Create a file, named solve, in the /etc/xinetd.d directory, using the following name for the server program:
      /usr/sbin/calxagnt
      

      The following example shows the content of a solve file:

      #Linux Agent for CA Mainframe Connector
      service SOLVE
      {
              socket_type     = stream
              protocol        = tcp
              wait            = no
              user            = root
              server          = /usr/sbin/calxagnt
      }
      

      Note: If you are using SuSE, you can use YaST (Yet another Setup Tool) to create this file.

    2. (Optional) If root privilege is not required, change the user under which the agent runs.
    3. (Optional) Add the following server argument to run the agent from a home directory:
              server_args     = -d home_directory_path
      
    4. Enter the following command to restart the xinetd daemon:
      service xinetd restart
      

      Communication between the Linux agent and the z/OS region is configured.