Configure log file for cron daemon on AIX

Cron daemon log in by default on /var/adm/cron/log, but I wanted to put it with all other logs of the system.
All system logs (syslog, mksysb, ftp, http, and so on, are on /var/syslog filesystem, I decided to put cron logs in the same place. Here’s what I did.

Add this lines to the end of file /etc/cronlog.conf

1
2
3
4
5
logfile=/var/syslog/cron.log
size=2m
rotate=4
archive=/var/syslog
compress

As cron is started from inittab it will respawn when you kill the PID.

1
2
[root@aix:/] cat /etc/inittab|grep cron
cron:23456789:respawn:/usr/sbin/cron

So, just kill cron’s PID (10748102 in this case)

1
2
[root@aix:/var/adm/cron] ps -ef|grep cron
    root 10748102        1   0 18:35:42      -  0:00 /usr/sbin/cron

Note also that cron log wil be rotate and compress. See:

1
2
3
4
5
6
7
8
[root@bibmnim:/var/adm/cron] ls -ltr /var/syslog/
total 18752
drwxr-xr-x    2 root     system          256 Mar 01 2011  lost+found
-rw-rw-r--    1 root     cron         164711 Apr 21 23:58 cron.log.0.Z
-rw-rw-r--    1 root     cron         165926 Apr 27 12:29 cron.log.1.Z
-rw-rw-r--    1 root     cron         165527 May 03 01:01 cron.log.2.Z
-rw-rw-r--    1 root     cron         164224 May 08 13:45 cron.log.3.Z
-rw-rw-r--    1 root     cron           1493 May 13 18:41 cron.log

That’s it!

Just thanks if the post was helpful

5 (1)
Article Rating (1 Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
AIX - How to get CPU infomation
Viewed 5997 times since Fri, Jun 8, 2018
A Change to the SMT Mode Default in POWER9
Viewed 5546 times since Fri, Jan 18, 2019
How To Mirror Your Root Disk On AIX (a.k.a. rootvg)
Viewed 5813 times since Mon, May 21, 2018
Reconfigure RSCT ID to fix DLPAR issues on cloned AIX systems
Viewed 14222 times since Thu, Feb 21, 2019
AIX Creating EtherChannel Devices from Command Line
Viewed 3825 times since Mon, Jun 3, 2019
IBM V7000f Performance Test with Vdbench Tool on IBM AIX
Viewed 16303 times since Thu, Jan 23, 2020
Check connection (rsh or nimsh) between NIM server and LPAR
Viewed 10824 times since Thu, Feb 21, 2019
Checking HBA status on AIX
Viewed 18593 times since Fri, Oct 5, 2018
AIX: How to determine which application created the OS core file
Viewed 2607 times since Mon, Jun 11, 2018
How to setup an user in AIX
Viewed 4041 times since Mon, May 28, 2018