1834447 Members
2238 Online
110067 Solutions
New Discussion

crontab authorization

 
SOLVED
Go to solution
Kenn Chen
Advisor

crontab authorization

What authorization should i assigned to my Unix user in order to schedule crontab jobs. Thanks.
Cyber Zen
4 REPLIES 4
Volker Borowski
Honored Contributor
Solution

Re: crontab authorization

You need to enter the username in

/var/adm/cron/cron.allow

old path may be

/usr/lib/cron/cron.allow
but it should be linked to the one above.

Hope this helps
Volker
Dirk Kochale
Advisor

Re: crontab authorization

Hi

Please use /var/adm/cron/cron.allow

HTH Dirk
Every problem is easy as long as you know the answer
Michael Tully
Honored Contributor

Re: crontab authorization

Hi,

To allow a user to use the crontab function, you may need to add them to the cron.allow file. This file can be found in /var/spool/cron/cron.allow

HTH
-Michael
Anyone for a Mutiny ?
Sanjay_6
Honored Contributor

Re: crontab authorization

Hi,

The cron.allow file is in /var/adm/cron. The diectory /usr/lib/cron is linked to this directory. Like the others said, add the user name in the cron.allow file. For users whom the cron jobs is not allowed are added in cron.deny file.

thanks