active questions tagged crontab - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:43:02Z http://stackoverflow.com/feeds/tag/crontab http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1796566/crontab-in-plesk 0 Crontab in Plesk Dan 2009-11-25T12:21:17Z 2009-11-25T12:31:11Z <p>Hi, I'm trying to run a test script using crontab within Plesk. The php file simply emails me a message</p> <pre><code>mail('me@somewhere.com','Cron Test','Test'); </code></pre> <p>My path to php is /user/bin/php</p> <p>I have entered * in every field, to run the script every minute with the following command:</p> <pre><code>/usr/bin/php -q /usr/httpdocs/crontest.php </code></pre> <p>However, the script is not being run.</p> <p>Can anyone help?</p> <p>I'm probably missing something simple, I've never used cron before.</p> <p>Any advice appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1755880/call-function-periodically-in-java 0 Call function periodically in Java SjB 2009-11-18T13:14:31Z 2009-11-18T16:44:12Z <p>we need run one function periodically in Java web application . How to call function of some class periodically ? Is there any way that call function when some event occured like high load in server and so on . what is crontab ? Is that work periodically ?</p> http://stackoverflow.com/questions/1714875/eval-to-variable-failing-w-crontab 1 Eval to variable failing (w/Crontab) brianreavis 2009-11-11T12:26:18Z 2009-11-11T14:24:59Z <p>Here's a snippet of a bash script I'm writing to log CPU loads:</p> <pre><code>#!/bin/bash # ... irrelevant nonsense ... cmd1="/usr/bin/mpstat -P ALL | egrep '(AM|PM)([[:space:]]+)(0)' | tr -s ' ' | cut -d' ' -f4" ldsys="$(echo $cmd1 | /bin/sh)" # ... irrelevant nonsense ... </code></pre> <p><code>$ldsys</code> is set properly when the script is executed conventionally from the console. It's golden. <strong>Here's the issue:</strong> when executed with crontab, <code>$ldsys</code> is empty.</p> <p>I've been trying millions of things for the last three hours to try to get this thing work... but I can't find <em>anything</em>. Does anyone have any ideas?</p> <p><hr></p> <h2>Notes:</h2> <ul> <li><p><code>/usr/bin/mpstat</code> <em>can</em> be executed by cron. I tested by adding a bogus task to fire every minute: <code>/usr/bin/mpstat -P ALL &gt;&gt; somefile</code> and checking the output. It works.</p></li> <li><p><code>egrep</code>, <code>tr</code>, and <code>cut</code> all function fine under cron. </p></li> <li><del>I'm thinking it really has to do with the eval assignment convention... but I don't know why that would be an issue considering it's a relatively-fundamental construct...</del> After trying Adam's suggestion, I now have no idea what to think...</li> </ul> <p><strong>Edit:</strong> stripped out <code>eval</code> usage... still no dice.</p> http://stackoverflow.com/questions/1704084/crontab-report-of-what-runs-in-a-specified-start-and-end-datetime 2 crontab report of what runs in a specified start and end datetime Terry 2009-11-09T21:46:06Z 2009-11-10T08:28:30Z <p>Are there any tools or reports out there that given a crontab file can output which jobs run within a specified time-frame.</p> <p>Our crontab file has become very large and our system administrators struggle to find out which jobs need to be rerun when we have scheduled downtime on the server. We're trying to figure out which jobs we need to run.</p> <p>I was planning on writing my own script but wondering if there was something out there already</p> http://stackoverflow.com/questions/1693804/run-a-command-every-week-with-cron 0 Run a command every week with Cron? [closed] igul222 2009-11-07T17:36:03Z 2009-11-07T17:47:04Z <p>Simple question- what would a crontab entry look like for a command I want to run every week on Saturday at 8:05 AM?</p> http://stackoverflow.com/questions/1683620/getting-started-with-cronjobs-on-a-mac 0 Getting started with cronjobs on a Mac. Adam 2009-11-05T21:07:19Z 2009-11-06T14:16:04Z <p>I'm trying to get familiar with cron jobs, and I think I get the basic idea (scheduling, syntax, etc), But, I can't seem to get it right on my mac with Terminal - where exactly do I find the Crontab? How should I reference the paths to scripts?</p> <p>What I'm trying to do is hit a php script on a remote machine (http://...) - Is that possible at all?</p> http://stackoverflow.com/questions/1604041/creating-crontab-via-capistrano-instead-of-using-crontab-e 0 Creating crontab via Capistrano instead of using crontab -e sbtodd 2009-10-21T22:34:37Z 2009-11-04T18:04:56Z <p>I would like to include cron tasks in my Capistrano deployment files instead of using the following command to manually edit the crontab file:</p> <p>crontab -e [username]</p> <p>Is there a script I could use within the Capistrano run command to set the contents of the crontab?</p> http://stackoverflow.com/questions/1673143/edit-crontab-programmatically-and-force-the-daemon-to-refresh 0 Edit crontab programmatically and force the daemon to refresh Jasim 2009-11-04T11:14:54Z 2009-11-04T13:24:27Z <p>Hi,</p> <p>I'm trying to write a web frontend for Crontab in Ruby using the excellent CronEdit gem. I went through Dillon Cron's crontab source code and found that it updates a particular file so that the daemon will refresh the cron list during the next sweep. </p> <p>In man crontab for VixieCron, it says:</p> <pre><code>Additionally, cron checks each minute to see if its spool directory’s modtime (or the modtime on /etc/crontab) has changed, and if it has, cron will then examine the modtime on all crontabs and reload those which have changed. Thus cron need not be restarted whenever a crontab file is modified. Note that the crontab(1) command updates the modtime of the spool directory whenever it changes a crontab. </code></pre> <p>Is there any platform (Ubuntu, Red Hat, ArchLinux, Mac OS X) independent way to ensure that after manually editing the Cron file, the daemon refreshes it without fail?</p> http://stackoverflow.com/questions/1603034/how-do-you-deploy-cron-jobs-to-production 3 How do YOU deploy cron jobs to production? brbob 2009-10-21T19:24:02Z 2009-10-24T08:03:10Z <p>How do people deploy/version control cronjobs to production? I'm more curious about conventions/standards people use than any particular solution, but I happen to be using git for revision control, and the cronjob is running a python/django script.</p> http://stackoverflow.com/questions/1601153/django-custom-command-and-cron 2 django custom command and cron Hellnar 2009-10-21T14:22:31Z 2009-10-21T14:50:38Z <p>Hello I want my customly made django command to be executed every minute, however it seems like python <code>/path/to/project/myapp/manage.py mycommand</code> doesn't seem to work while at the directory <code>python manage.py mycommand</code> works perfectly.</p> <p>How can I achieve this ? I use /etc/crontab with:</p> <pre><code>****** root python /path/to/project/myapp/manage.py mycommand </code></pre> http://stackoverflow.com/questions/1492323/will-cron-execute-php-files-or-only-cgi-scripts 0 Will cron execute php files or only CGI scripts? mittu 2009-09-29T12:46:34Z 2009-09-29T13:15:18Z <p>Can .php be used in Crontab function on Linux or wil it execute only .CGI scripts?</p> <p>I'm using Plesk Control panel, I did the settings as per the Crontab doc, but i think it's not executing the php files.</p> <p>Does any one have the Idea about what more to do with </p> http://stackoverflow.com/questions/1465607/java-scheduler 1 java scheduler Madhu 2009-09-23T12:11:37Z 2009-09-23T12:19:49Z <p>Which is the best way to run a process in scheduler. I can either do it crontab or Spring-Batch. Any other better option?</p> http://stackoverflow.com/questions/1382634/how-to-set-cronjob-for-2-days 1 how to set cronjob for 2 days? someone 2009-09-05T06:33:25Z 2009-09-18T23:36:23Z <p>Hi, I am using crontab command for db backup purpose,and want to take a backup once every two days. is this correct 0 0 2 * * *</p> <p>if wrong please tell me the correct command for setting cron for 2 days..pls help..</p> http://stackoverflow.com/questions/1405108/how-to-get-colored-emails-from-crontab 1 How to get colored emails from crontab? Sorin Sbarnea 2009-09-10T12:50:43Z 2009-09-10T13:09:30Z <p>I call a Python script from crontab. The script does generates colored output using ANSI escapes but when crontab is sending the mail with the output I see the escapes instead of colors. </p> <p>What is happening is logic but I would like to know if it would be possible to generate a html message instead. </p> <p>I would like a solution that does not require to implement the email notification myself.</p> http://stackoverflow.com/questions/1305425/cronjob-for-mysqldump-is-giving-error -1 cronjob for mysqldump is giving error [closed] Sakura 2009-08-20T11:04:08Z 2009-08-20T11:56:09Z <p>Hello,</p> <p>I am using mysqldump command to take backup of my database.</p> <pre><code>mysqldump --add-drop-table -u user -ppassword databasename &gt; backup/mybackup_$(date +%d%m%Y_%H%M).sql </code></pre> <p>and it works fine...But i want to automate this so that it can take a backup once in every two days or something..for this i am using crontab..</p> <pre><code>15 2 * * * mysqldump --add-drop-table -u user -ppassword databasename &gt; backup/mybackup_$(date +%d%m%Y_%H%M).sql </code></pre> <p>but this is giving me an error in putty saying command not found..any idea why?? Please help me..</p> http://stackoverflow.com/questions/1294059/how-to-set-crontab-using-command-prompt 0 How to set crontab using command prompt? [closed] rsensan 2009-08-18T13:56:35Z 2009-08-18T14:06:37Z <p>How to set cronjob/crontab in server using command prompt. Give sample command or sample links. </p> http://stackoverflow.com/questions/1265860/how-to-test-things-in-crontab 4 How to test things in crontab ulver 2009-08-12T12:29:32Z 2009-08-15T16:01:43Z <p>Hi,</p> <p>This keeps happening to me all the time: 1) I write a script(ruby, shell, etc). 2) run it, it works. 3) put it in crontab so it runs in a few minutes so I know it runs from there. 4) It doesnt, no error trace, back to step 2 or 3 a 1000 times.</p> <p>When I ruby script fails in crontab, I can't really know why it fails cause when I pipe output like this:</p> <pre><code>ruby script.rb &gt;&amp; /path/to/output </code></pre> <p>I sorta get the output of the script, but I don't get any of the errors from it and I don't get the errors coming from bash (like if ruby is not found or file isn't there)</p> <p>I have no idea what environmental variables are set and whether or not it's a problem. Turns out that to run a ruby script from crontab you have to export a ton of environment variables.</p> <p>Is there a way for me to just have crontab run a script as if <strong>I ran it myself from my terminal</strong>?</p> <p>When debugging, I have to reset the timer and go back to waiting. Very time consuming.</p> <p>How to test things in crontab better or avoid these problems?</p> http://stackoverflow.com/questions/1256250/php-ob-from-cronjob 0 PHP ob_* from cronjob? plamen 2009-08-10T17:48:38Z 2009-08-10T17:52:33Z <p>Hi guys, I'm experiencing some problems with ob_* function when it runs as a cronjob: </p> <pre><code>&lt;?php function getLayout($file, $extract=array()) { if (is_file($file)) { if (count($extract) &gt; 0) { extract($extract); } ob_start(); include $file; $contents = ob_get_contents(); ob_end_clean(); return $contents; } return false; } file_put_contents('somecachefile.html', getLayout('somefile.php', array('var1'=&gt;$val1, 'var2'=&gt;$val2))); ?&gt; </code></pre> <p>The cronjob is setup like this: (runs every minute) </p> <p>* * * * * /usr/bin/php /path/to/cron.php > /dev/null</p> <p>In this case nothing happen but the cron really ran.</p> <p>If i call this (/usr/bin/php /path/to/cron.php) from the command line everything is working as expected.</p> <p>Any ideas where i make a mistake???</p> <p>Thanks for the help upfront!</p> http://stackoverflow.com/questions/1192580/hourly-cronjob-on-windows 1 Hourly cronjob on Windows KB22 2009-07-28T08:09:59Z 2009-07-28T08:49:09Z <p>Hi,</p> <p>I just setup cron on my windows dev system in order to perform an hourly run of a script.</p> <p>I tried to edit crontab in order to run my script hourly, sadly with no success.</p> <p>Could anyone pls. drop me the crontab line which will execute script.xy every hour?</p> http://stackoverflow.com/questions/1161286/is-there-a-way-to-validate-etc-crontabs-format 2 Is there a way to validate /etc/crontab's format? [closed] Ben K. 2009-07-21T19:34:35Z 2009-07-21T20:22:03Z <p>I prefer to stick scheduled tasks in /etc/crontab so I can see at a glance what's scheduled to run, regardless of which user the task runs as.</p> <p>The only gotcha is that the format isn't validated on save, unlike crontab -e -- so a stray character can quietly break the entire cron.</p> <p>Is there a way to validate the /etc/crontab format before/after save?</p> http://stackoverflow.com/questions/1149858/run-crontab-with-user-input 1 Run crontab with user input Herves 2009-07-19T13:05:27Z 2009-07-19T15:19:37Z <p>Hi, i created a crontab which will run a bash script test.sh. This test.sh file requires some input from the user, and saves the user input into a variable. How do i ensure that the user input will be saved to a variable in test.sh, and when crontab runs the script i can get the output i want?</p> <p>for e.g i have 2 files, file1.sh and file2.sh. i put file2.sh in file 1.sh. i then run file1.sh, get the user input, and save it somewhere. crontab will run file2.sh, and retrieve the value from the "<em>saved somewhere variable</em>". is there anyway for this?</p> http://stackoverflow.com/questions/869589/why-ssh-fails-from-crontab-but-succedes-when-executed-from-a-command-line 1 Why ssh fails from crontab but succedes when executed from a command line? tkokoszka 2009-05-15T16:12:19Z 2009-06-25T07:53:07Z <p>I have a bash script that does ssh to a remote machine and executes a command there, like:</p> <pre><code>ssh -nxv user@remotehost echo "hello world" </code></pre> <p>When I execute the command from a command line it works fine, but it fails when is being executed as a part of crontab (errorcode=255 - cannot establish SSH connection). Details:</p> <pre><code>... Waiting for server public key. Received server public key and host key. Host 'remotehost' is known and matches the XXX host key. ... Remote: Your host key cannot be verified: unknown or invalid host key. Server refused our host key. Trying XXX authentication with key '...' Server refused our key. ... </code></pre> <p>When executing locally I'm acting as a root, crontab works as root as well. Executing 'id' from crontab and command line gives exactly the same result:</p> <pre><code>$ id &gt; uid=0(root) gid=0(root) groups=0(root),... </code></pre> <p>I do ssh from some local machine to the machine running crond. I have ssh key and credentials to ssh to crond machine and any other machine that the scripts connects to.</p> <p>PS. Please do not ask/complain/comment that executing anything as root is bad/wrong/etc - it is not the purpose of this question.</p> http://stackoverflow.com/questions/1015485/is-it-possible-to-make-a-bash-file-run-as-root-in-crontab 0 Is it possible to make a bash file run as root in crontab? Shore 2009-06-18T22:15:50Z 2009-06-18T22:49:38Z <p>I need that bash file to run periodically,and must as root.</p> <p>Is that kind of possible?</p> <pre><code>[root@file nutch-0.9]# locate crontab /etc/crontab /etc/sysconfig/crontab /usr/bin/crontab /usr/share/man/man1/crontab.1.gz /usr/share/man/man1p/crontab.1p.gz /usr/share/man/man5/crontab.5.gz /usr/share/vim/vim71/syntax/crontab.vim [root@file nutch-0.9]# </code></pre> http://stackoverflow.com/questions/1004764/why-is-this-cron-entry-executed-twice 0 Why is this cron entry executed twice? erotsppa 2009-06-17T02:15:35Z 2009-06-17T02:28:57Z <p>*/5 * * * * my command</p> <p>This entry works but every 5 minutes it get executed twice, why?</p> <p>In /var/log/cron it shows: <br> Jun 16 22:20:01 Test CROND[12512]: (root) CMD (my command) <br>Jun 16 22:20:01 Test CROND[12516]: (root) CMD (my command) <br><br>So it's not from two uers.<br> It is only entered once with crontab -e -u root <br><br>The command is a php command.</p> http://stackoverflow.com/questions/878600/how-to-create-cronjob-using-bash 1 How to create cronjob using bash Raúl Roa 2009-05-18T16:37:47Z 2009-05-22T21:28:56Z <p>Does crontab have an argument for creating cronjobs without using the editor (crontab -e). If so, What would be the code create a cronjob from a bash script?</p> http://stackoverflow.com/questions/892104/how-to-give-permission-for-the-cron-job-file 0 How to give permission for the cron job file? unknown (google) 2009-05-21T09:34:31Z 2009-05-21T09:43:33Z <p>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. </p> <p>Thanks......</p> http://stackoverflow.com/questions/826882/crontab-in-python 0 crontab in python m2o 2009-05-05T20:58:43Z 2009-05-06T15:33:17Z <p>I'm writing code in python for some sort of daemon that has to execute a specific action at a certain instance in time defined by a crontab string. Is there a module I can use? If not, can someone paste/link an algorithm I can use to check whether the instance of time defined by the crontab has occured in the time from when the previous check was done. Thanks.</p> http://stackoverflow.com/questions/704927/does-cron-expression-in-unix-linux-allow-specifying-exact-start-and-end-dates 1 Does cron expression in unix/linux allow specifying exact start and end dates Krishna Kumar 2009-04-01T10:25:36Z 2009-04-21T03:16:47Z <p>I want to be able to configure something like this.</p> <ol> <li>I want to run job 'X' at 7 AM everyday starting from 29/june/2009 till 30/12/2009. Consider current date as 4/4/2009.</li> </ol> http://stackoverflow.com/questions/712124/going-nuts-with-executing-pyton-script-via-crontab-on-debian 1 Going nuts with executing pyton script via crontab on debian! Zaid 2009-04-03T00:18:21Z 2009-04-03T06:56:02Z <p>This is what my crontab file looks like:</p> <pre><code>* * * * * root /usr/bin/python /root/test.py &gt;&gt; /root/classwatch.log 2&gt;&amp;1 </code></pre> <p>This is what my python script looks like:</p> <pre><code>#!/usr/bin/python print "hello" </code></pre> <p>The cronjob creates the log file. But it is empty. I am also pretty certain that the python file is not being executed.</p> <p>Appreciate any help! I've been playing with it for past 4 hrs with no luck.</p> http://stackoverflow.com/questions/707184/how-do-you-run-a-crontab-in-cygwin-on-windows 1 How do you run a crontab in Cygwin on Windows? timhon 2009-04-01T20:20:49Z 2009-04-01T21:07:35Z <p>Some cygwin commands are .exe, so you can run them with the standard Windows Scheduler, but others are not .exe extension so cant be run from dos (it seems like). For example I want updatedb to run nightly.</p> <p>Any ideas on how to make cron work?</p>