Configuración de syslog en AIX
Configuring the Syslog Server.
--------------------------------------------
This configuration example will be using " *.debug " which will log everything on the system.
#vi /etc/syslog.conf
*.debug /tmp/syslog.out rotate size 100k files 4
This entry will rotate the syslog.out file when it reaches 100k and will keep 4 files in the rotation.
Save the /etc/syslog.conf file and touch /tmp/syslog.out
# touch /tmp/syslog.out
#refresh -s syslogd
0513-095 The request for subsystem refresh was completed successfully.
Nota: En el caso de tener un directorio especifico para logs dentro del sistema, redirigir la salida a este:
#vi /etc/syslog.conf
*.debug /mylogdir/syslog.out rotate size 100k files 4
# touch /mylogdir/syslog.out