vote up 0 vote down star

Hi, I have set the cron tab for my site. But I have got message in my mailing id like this "Permission denied" for the script. Can anyone help me telling what may be the problem.

Thanks......

flag

21% accept rate

2 Answers

vote up 2 vote down

You get this error while setting the crontab? or from a script running from the cron?

If while setting the crontab, try this:

You type: crontab -e You get: -bash: /usr/bin/crontab: Permission denied

Problem: Your user is not in the cron group.

Solution: As root, edit the /etc/group file, find the cron group and add your user to that line (the usernames are comma-separated). Then re-login as your user.

Verify: Run command "groups". You should see "cron" in there.

(from http://www.parseerror.com/argh/crontab-e-Permission-denied.txt)

link|flag
vote up 2 vote down

I can specify a seperate cronfile for each avaible user. So, you can add a new user (adduser), give that user special permissions and and run your script in that user cronfile.

Reference Crontab Manual

link|flag
To expand on this: crontab's are per user. So make sure the user whose crontab you have edited has execute rights on the script. – Colin Fine May 21 at 9:42
That's correct. Thanks Colin. As stated in the manual you can edit users cronfiles with crontab -e username – Henrik P. Hessel May 21 at 9:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.