You configure the Linux syslog daemon to establish communication with the z/OS region. The syslog daemon has various implementations. The following procedures show you how to configure rsyslog and syslog-ng.
To configure rsyslog for CA Mainframe Connector
$WorkDirectory /var/spool/rsyslog # where to place spool files $ActionQueueFileName fwdRule1 # unique name prefix for spool files $ActionQueueMaxDiskSpace 1g # 1gb space limit (use as much as possible) $ActionQueueSaveOnShutdown on # save messages to disk on shutdown $ActionQueueType LinkedList # run asynchronously $ActionResumeRetryCount -1 # infinite retries if host is down *.* @@[host_name]:601
host_name specifies the name or IP address of the z/OS system on which the z/OS region is running.
Note: You can change the port number, but the corresponding SLPORT value in the SiLNXPRM parameter member for the z/OS region must match.
/etc/init.d/rsyslog restart
rsyslog is restarted with the new configuration.
To configure syslog-ng for CA Mainframe Connector
destination loghost { tcp("host_name" port(601)); };
log { source(src); destination(loghost); };
host_name specifies the name or IP address of the z/OS system on which the z/OS region is running. If you are using Internet Protocol Version 6 (IPv6), use the tcp6() driver instead of the tcp() driver.
Note: You can change the port number, but the corresponding SLPORT value in the SiLNXPRM parameter member for the z/OS region must match.
/etc/init.d/syslog restart
syslog-ng is restarted with the new configuration.
| Copyright © 2011 CA. All rights reserved. | Tell Technical Publications how we can improve this information |