Linux - Server This forum is for the discussion of Linux Software used in a server related context. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
10-07-2010, 03:09 PM
|
#1
|
LQ Newbie
Registered: Oct 2010
Posts: 2
Rep:
|
crontab -e updates do not get picked up to run
I have a user that runs crontab -e makes his updates but they never get run. I wrote a simple shell script to echo a string into a file called cron.out and updated the users crontab file as the user. It never gets executed. The scripts have the proper permissions the out file has read write permissions. The script runs fine from the command line but it just does not take using crontab -e. If I start and stop cron as root the changes take effect and the script runs fine. Any ideas?
|
|
|
10-07-2010, 03:55 PM
|
#2
|
Member
Registered: Jan 2008
Posts: 105
Rep:
|
As root, please paste the output of
Code:
ls -l /var/spool/cron
Last edited by valen_tino; 10-07-2010 at 03:56 PM.
|
|
|
10-07-2010, 05:20 PM
|
#3
|
LQ Newbie
Registered: Oct 2010
Posts: 2
Original Poster
Rep:
|
ls -l /var/spool/cron
here is the output of ls -l /var/spool/cron
-rw------- 1 root root 154 Oct 4 02:23 root
-rw------- 1 siebsrv root 154 Oct 7 13:13 siebsrv
|
|
|
10-07-2010, 09:31 PM
|
#4
|
Member
Registered: Jan 2008
Posts: 105
Rep:
|
Hmm...that seems about right if you are installing the cron as siebsrv.
Anything indicative in /var/log/cron or /var/mail/siebsrv ?
Are you using the complete path to the script in cron e.g. /bin/ls versus simply using ls ?
Last edited by valen_tino; 10-07-2010 at 09:40 PM.
|
|
|
10-07-2010, 09:54 PM
|
#5
|
Member
Registered: Aug 2007
Location: Vietnam
Distribution: RedHat based, Debian based, Slackware, Gentoo
Posts: 724
Rep: 
|
1. Check /var/log/cron to make sure the cron was run
2. I suggest you redirect error to a file (more easy to troubleshoot):
Code:
*/30 * * * * /full/path/to/your/script >> /var/log/<your_script>.cron 2>&1
|
|
|
10-10-2010, 12:53 AM
|
#6
|
Member
Registered: Jul 2008
Location: Orange County
Distribution: Ubuntu/Debian, CentOS, RHEL, FreeBSD, OS X
Posts: 75
Rep:
|
Quote:
Originally Posted by rps8
I have a user that runs crontab -e makes his updates but they never get run. I wrote a simple shell script to echo a string into a file called cron.out and updated the users crontab file as the user. It never gets executed. The scripts have the proper permissions the out file has read write permissions. The script runs fine from the command line but it just does not take using crontab -e. If I start and stop cron as root the changes take effect and the script runs fine. Any ideas?
|
I had a similar problem using a Debian VPS server. In my case, it turned out that cron needed a carriage return.
Broken:
Code:
[tony@rubyninja ~]$ crontab -l
*/30 * * * * /full/path/to/your/script [tony@rubyninja ~]$
Fixed:
Code:
[tony@rubyninja ~]$ crontab -l
*/30 * * * * /full/path/to/your/script
[tony@rubyninja ~]$
Last edited by alpha01; 10-10-2010 at 01:07 AM.
|
|
|
10-10-2010, 09:08 PM
|
#7
|
Member
Registered: Jul 2007
Location: Chicago Illinois
Distribution: SLES 10 SP2/SP3, SLES 11 SP1, OpenSUSE, Sabayon, Gentoo, Fedora 14, RHEL 3/4/5/6
Posts: 98
Rep:
|
The only other thing I can add, is to make sure that your cron entry is more than one minute later than the current time. I have had trouble getting cron entries to run if (at the time of updating the cron), their scheduled time is less than 1 minute than the current time.
--Shaun
|
|
|
10-10-2010, 10:02 PM
|
#8
|
Senior Member
Registered: Feb 2004
Location: lost+found
Distribution: CentOS
Posts: 1,430
Rep:
|
Make sure crond is running:
|
|
|
All times are GMT -5. The time now is 03:39 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|