active questions tagged cronjob - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:08:21Z http://stackoverflow.com/feeds/tag/cronjob http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1929158/defer-processing-during-apache-page-render 4 defer processing during apache page render aidan 2009-12-18T16:14:03Z 2009-12-18T17:18:24Z <p>I have an apache2 / mod_perl website. On one page, I need to do some server/server communication via SOAP.</p> <p>The results of this communication are not required for the rendering of the page (but user input is required to trigger this communication).</p> <p>The SOAP communication is very slow.</p> <p>So what I want to do is process and print the page for the user, then do all the SOAP stuff behind the scenes.</p> <p>What's the best way to achieve this? start some fork? write the job to a file and have a cronjob pick it up?</p> <p>Thanks</p> http://stackoverflow.com/questions/1920094/how-to-write-this-simple-cronjob-in-linux-debian 1 How to write this simple cronjob in Linux (Debian)? [closed] Adam 2009-12-17T07:45:21Z 2009-12-18T01:27:33Z <p>I need assistance in getting a cronjob to run properly in Linux (Debian). (This is my first one).</p> <p>I need a file to "run" once per hour a set number of times. I got this far:</p> <h1>crontab -e</h1> <p>no crontab for root - using an empty one</p> <p>edited crontab file: 0 2-21 * * * /www/file.php</p> <p>crontab: installing new crontab</p> <p>This was designed to make the cronjob run beginning at 2am (or 200 hrs) and to run each hour on the hour until 2100 hrs. I checked the database to see if the file did its thing at 2:10 and nothing had changed so it clearly didn't run.</p> <p>I'm fairly new to Linux so there's probably a way to see what happened but I'm really wondering whether I wrote the Cronjob instruction correctly before I get into diagnosing.</p> http://stackoverflow.com/questions/1922922/cronjob-executing-multiple-times-at-once 0 Cronjob executing multiple times at once [closed] zaid 2009-12-17T16:26:57Z 2009-12-17T17:16:33Z <p>I have a cronjob similar to this:</p> <p>*/1 * * * * /usr/bin/python /home/root/test.py >> /home/root/spring.1</p> <p>In test.py, I am just printing the current time. After few mins of observation, I see this in spring.1 log file:</p> <p><hr></p> <p>17/12/2009 10:09:01 AM <hr></p> <p>17/12/2009 10:09:01 AM <hr></p> <p>17/12/2009 10:09:01 AM <hr></p> <p>17/12/2009 10:09:01 AM <hr></p> <p>17/12/2009 10:09:01 AM <hr></p> <p>17/12/2009 10:10:01 AM <hr></p> <p>17/12/2009 10:10:01 AM <hr></p> <p>17/12/2009 10:10:01 AM <hr></p> <p>17/12/2009 10:10:01 AM</p> <p>Anyone know what the problem may be? The python script is simply outputting the current time so we can say for sure that its cronjob which is opening the python multiple times.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1855227/run-cronjobs-and-send-to-email-problems 0 run cronjobs and send to email problems william 2009-12-06T12:11:56Z 2009-12-16T15:08:41Z <p>Hey</p> <p>I want to create cronjobs that runs every 10 min &lt; time now</p> <p>and mail me a email with the follow txt. </p> <p>"deleted orders"</p> <p>my code looks like this. </p> <pre><code>MAILTO=”my_email@mail.com” */10 * * * * /var/www/php-sites/dlf/cron_jobs.php </code></pre> <p>I have checked my mails the last 30 min.. and still havent receive any mails. am i doing it wrong ? </p> http://stackoverflow.com/questions/1909798/cron-jobs-in-a-zend-framework-1-8-application 1 Cron Jobs in a Zend Framework 1.8+ application? Andrew 2009-12-15T19:30:39Z 2009-12-15T20:03:21Z <p>I am using Zend Framework 1.9.6. I want to start using cron jobs. I am new to this so I'm not quite sure how to do this.</p> <p>I'm thinking it would be a good idea to store my crons in <code>/myapp/scripts</code> or <code>/myapp/application/cronjobs</code>. What do you think? (my application only has a default module)</p> <p>Once I've decided on a place to store them, how would I go about creating a script? Let's say that I want to access a database, check for changes, and send an email as a report. I would need to use some <code>Zend_Db</code> components, and <code>Zend_Mail</code> components, as well as read the default config values. I guess I might even want to Bootstrap the application? But I won't need any views so I don't know if that would be the best idea. I don't know. What should I do, and how can I do it? Again, I am using version 1.9.6 and created my application with the <code>Zend_Tool</code> command-line script.</p> <p>I think there's enough information online about how to add the cron job to the crontab file. (My web host also offers a tool to make this really easy, so I'm not so much interested in this part).</p> <p>Have you done this in a 1.8+ application? Do you have an example script you could share?</p> http://stackoverflow.com/questions/1887618/how-to-redirect-complete-output-of-a-script 1 how to redirect complete output of a script pruefsumme 2009-12-11T12:01:10Z 2009-12-11T12:26:32Z <p>I have a simple cronjob running every day at 18:35:</p> <pre><code>05 18 * * * ~/job.sh 2&gt;&amp;1 &gt;&gt; ~/job.log </code></pre> <p>So the output of ~/job.sh should be written into ~/job.log. In job.sh, there are some echo commands and a few python scripts are executed, e.g.:</p> <pre><code>echo 'doing xyz' python doXYZ.py </code></pre> <p>Now, whatever output the python scripts produce, they are not written into ~/job.log. I only see the echo text in ~/job.log. How can I redirect the <em>complete</em> output of the shell script to ~/job.log?</p> http://stackoverflow.com/questions/1219097/need-to-automate-pptp-connectivity-from-linux-to-windows 0 Need to Automate PPTP connectivity from Linux to Windows. humble_coder 2009-08-02T15:13:34Z 2009-12-09T14:00:12Z <p>Hi All,</p> <p>I'm in need of setting up cron-based VPN connectivity from Ubuntu "Jaunty" to a Windows-based VPN over PPTP for incremental DB synchronization. Using the default Network Manager and PPTP module everything seems to work fine. However, I have 2 issues:</p> <p>1) Despite checking "Use this only for resources", I still lose my local internet connection and am routed through their servers.</p> <p>2) As a result of 1 I have need to automate connecting to and disconnecting from the VPN in order to perform various tasks as the machine is at the office and I am not.</p> <p>Much of the information I'm finding on PPTPing from Linux to Windows involves the use of GUI Network Manager, etc. However, I need to perform these steps from the command line for the sake of automation. Can anyone point me to a quality bit of documentation for this specific case?</p> <p>Best.</p> http://stackoverflow.com/questions/1387403/how-to-set-a-complex-custom-crontab-in-google-app-engine-java 0 How to set a complex custom crontab in google-app-engine (java)? Shreeni 2009-09-07T03:05:54Z 2009-12-08T13:25:29Z <p>I am building an app for which I need to set up cron jobs. What I want to do is to set the specific minutes in a hour where specific crons should run. For instance:</p> <ul> <li>Task1 at 1st minute of the hour</li> <li>Task2 on every second minute of the hour</li> <li>Task3 every 2 minute only in the second half of the hour</li> </ul> <p>Building this in the standard Unix cron format is reasonably straightforward, but could not figure out how to do it in the Google-App-Engine.</p> <p>The <a href="http://code.google.com/appengine/docs/java/config/cron.html" rel="nofollow">documentation</a> does not list any non-trivial examples. Any suggestions on how to do it? Examples would be excellent.</p> http://stackoverflow.com/questions/1408354/using-curl-to-cronjob-a-url 0 using curl to cronjob a url VictorC 2009-09-10T23:58:50Z 2009-12-07T08:51:09Z <p>Hi ,</p> <p>I have an application on php-Codeigniter hosted on MediaTemple and I want to have a cron job runing a controller, the support told me to use CURL I tried using without any succes, example: </p> <pre><code>curl http://mydomain.com/admin/action/get </code></pre> <p>My controller inserts some information to a database, the curl doesn't display error but the inserts are not happening only when I run the controller directly on the browser works. no auth is required.</p> <p>any idea?</p> <p>thanks</p> http://stackoverflow.com/questions/1508391/how-to-run-net-exe-using-cron-job-on-cloud-server 0 How to run .NET exe using cron job on cloud server Puneet 2009-10-02T08:49:09Z 2009-12-04T09:00:02Z <p>Has anyone run an exe using cron job?</p> <p>I want to run an exe at scheduled intervals on a cloud server. The scheduled exe is created using .NET.</p> <p>The cloud server has facility of running Cron jobs using ruby, php, perl, python and http I do not have much knowledge of what a cron job is.</p> <p>What would be the best way of scheduling the EXE? It is important that the adopted method is secure and not accessible to everyone.</p> <p>Many Thanks!</p> http://stackoverflow.com/questions/1803631/is-there-any-way-to-automatically-run-php-script-on-hosting-web-server-withour-cr 0 Is there any way to automatically run PHP script on Hosting web server withour cron?? Rajasekar 2009-11-26T13:20:04Z 2009-12-01T15:42:08Z <p>I had a script which sends sms alerts everyday. I want it to send automatically send sms by fetching message from database. Can I do it without cron. Is there any other solution. Plz help</p> http://stackoverflow.com/questions/1814197/php-generate-a-crontab 1 PHP generate a crontab Brandon 2009-11-29T00:02:08Z 2009-11-29T00:09:32Z <p>I want to have a web interface to control when to call a PHP script. In this interface I want to be able to set certain times or ranges that a script will be called. This information will be stored in a DB. When I hit save I want to have it read all the scheduled times from the DB, then format it and write it to a crontab for a cron job. Is there a way to have PHP modify a crontab file?</p> http://stackoverflow.com/questions/1802337/how-to-install-cron-im-a-newbie 0 How to install cron. Im a newbie Rajasekar 2009-11-26T08:41:57Z 2009-11-26T08:54:32Z <p>I want to run PHP scripts automatically. For that I googled and I came to know about CRON. But I dont know how to install and use it. Im using only PHP, CSS, HTML, and running on XAMP apache server on localhost. How to install. Help Me plz</p> http://stackoverflow.com/questions/1794557/web-based-cron-for-free 0 Web based cron for free .. Pandiya Chendur 2009-11-25T04:09:50Z 2009-11-25T07:27:32Z <p>Is there any free web based cron that can do scheduled jobs ....</p> http://stackoverflow.com/questions/1780823/php-loop-acting-as-cronjobensure-only-one-instance-running 0 PHP loop acting as cronjob[ensure only one instance running] Saif Bechan 2009-11-23T02:29:31Z 2009-11-23T02:49:52Z <p>Hello everybody,</p> <p>I have a multi part question for a php script file. I am creating this file that updates the database every second. There is no other modeling method, it has to be done every second.</p> <p>Now i am running CentOS and i am new to it. The first noob question is:</p> <blockquote> <p>How do i run a php file via SSH. I read it is just # php path-to/myfile.php. But i tried to echo something, and i dont see it in the text.</p> </blockquote> <p>Now i don't think that starting the file is going to be a problem. One problem i guess will be, i don't know if it is even possible, but here goes.</p> <blockquote> <p>Is it possible for me to be hundred percent sure that the file is only run once. What happens if i by accident run the file again.</p> </blockquote> <p>I was wondering further, if i implement a write to a log every second, i can know if everything is running ok. If there is an error or something wrong the log file will stop.</p> <blockquote> <p>Is the writing to a log file with the fopen, and write and close. Isn't this going to take a lot of time, isn't there an easier method in CentOS.</p> </blockquote> <p>Ok another big point i have is what happens when i run the file. Is the file run in the memory, or does it use the file in the system. Does it respond on changes made in the file, for example to stop the execution of the script.</p> <blockquote> <p>Can i implement some kind of stop mechanism in the file itself. Or is there a command i can use to stop the file.</p> </blockquote> <p>Another option i know of is implementing a cronjob that runs every minute. And this cronjob executes the php file. The php file will loop for one minute, updateting everything needed, and terminating. I implemented this method, but just used a browser. I just browsed to mu file, and opened it. I saw the browser was busy for a minute, but it didn't update anything in the database. Does anyone have an idea what the reason of this can be.</p> <p>Another question i have is by implementing the cronjob method, what is the command i fill in the PLESK panel. Is it the same as the above command. just php and the file name. Or are there special command like -f -q -something.</p> <p><strong>Sorry for all the noob questions.</strong></p> <p>If someone can help me i really appreciate it.</p> <p>Ciao!</p> http://stackoverflow.com/questions/1753643/advanced-cron-for-a-perl-script 2 Advanced cron for a perl script ankimal 2009-11-18T04:29:30Z 2009-11-18T19:47:09Z <p>I have a Perl script that needs to run following an annual schedule with specific dates and times of when to start and stop. I don't believe crontab can handle this. Is there a Perl module (even a non-perl implementation would be fine) that can help me with this? If it helps, I m running this on a linux box.</p> <p>Also, the schedule has only 15-20 aberrations (days on which the process must start and stop at a different time).</p> http://stackoverflow.com/questions/1746762/cakephp-shell-cronjob-controller-action-media-temple-server 0 Cakephp Shell Cronjob Controller Action Media Temple Server Fabian Brenes 2009-11-17T05:20:44Z 2009-11-17T23:56:51Z <p>Hi All, </p> <p>I'm trying to create a cron job that will send a weekly newsletter. I tried creating a shell task following what <a href="http://book.cakephp.org/view/110/Creating-Shells-Tasks" rel="nofollow">Cakephp manual</a> says. Then I go to the Media Temple Cron jobs and type in the following: </p> <p><code>php /home/#####/domains/domain.com/html/cake/console/cake -app /home//#####//domains/domain.com/html/vendors/shells newsletter</code></p> <p>I created the shell task on vendors/shell folder and named it newsletter.php and here's the code for it: </p> <pre><code>class NewsletterShell extends Shell { function main() { $this-&gt;sendEmailTo("Newsletter","subject","email@gmail.com"); } } </code></pre> <p>The sendEmailTo is a controller function I have in my appController so all my controller have access to it.</p> <p>My problem is every time the Cron Job runs I get this message:</p> <p>Could not open input file: /home/#####/domains/domain.com/html/cake/console/cake </p> <p>I even gave all the console files (cake.php , cake.bat etc) 0777 read write properties as well as for the vendors/shell/newsletter.php</p> <p>The ##### are the site number that media temple gives you but I'm not really sure I have it correct. They show an example of a cron job like this: /home/50838/data/script-name.sh</p> <p>So my questions are: </p> <p>Is my cake shell task correct and is the way I'm running it as a cron job accurate? </p> <p>Also does anyone know where to confirm my media temple site number so I can write that off as a possible error. </p> <p>Thanks in advance,</p> <p>Fabian </p> http://stackoverflow.com/questions/1741179/how-to-invoke-ruby-script-containing-system-command-with-cron-job 0 how to invoke ruby script containing system command with cron job? leomayleomay 2009-11-16T09:57:30Z 2009-11-16T12:53:58Z <p>I have a ruby script containing system command like <a href="http://gist.github.com/235833" rel="nofollow">http://gist.github.com/235833</a>, while I ran this script from shell, it works correctly, but when I added it to my cron job list, it doesn't work any more, the cron job is like:</p> <blockquote> <p>10/* * * * * cd /home/hekin; /usr/bin/ruby my_script.rb</p> </blockquote> <p>any idea what's going wrong with what i've done? Thank you.</p> http://stackoverflow.com/questions/1734073/mysql-trigger-events-vs-cronjob 0 Mysql trigger/events vs Cronjob Saif Bechan 2009-11-14T12:09:44Z 2009-11-14T15:58:33Z <p>Hello, </p> <p>I have an auction website which let my users place an unlimited amount of autobiddings. </p> <p>To monitor these autobiddings something has to check the database every second. </p> <p>My question is if it is better to use mysql trigger events or to user a cronjob every minute that executes a 60 sec looping php script.</p> <p>If i use the mysql trigger events there will be hundreds of events stacks on eachother, and fired on different times. Is this even possible?? ANd isn't the server load goning to be enourmous. I heard somewhere that the database will be locked while there is a schedueled event. I am using innoDB tables btw.</p> <p>I hope some one can shed some light on this toppic.</p> <p>Regards!</p> http://stackoverflow.com/questions/1388132/mediatemple-cron-jobs-working-on-11-internet 0 MediaTemple cron jobs working on 1&1 Internet? littlejim84 2009-09-07T08:07:04Z 2009-11-14T14:23:52Z <p>I've having to get a cron job that's currently working on MediaTemple (Grid Service) to work on a new 1&amp;1 Internet account. I've yet to do this yet, but is there anything I need to take into consideration? Or... effectively... cron jobs are cron jobs, they'll work where ever?</p> <p>It's a cron job to send out a mailing list from a database.</p> <p>Anything I need to consider to make it work smoothly?</p> http://stackoverflow.com/questions/1727832/running-a-php-cron-job-problem-with-execution-time 0 Running a php cron job - problem with execution time Smaug 2009-11-13T08:13:12Z 2009-11-13T10:08:20Z <p>Hello,</p> <p>I have a site where I download data from one site using cUrl a then generate a image from it, which is stored on the server and displayed on other websites.</p> <p>I've got everything working perfectly, except from a cron job.</p> <p>Whenever I run this script it stops after a while (it's more than 30 secs though, more like 2-3 minutes, it's hosted on GoDaddy) which is still not enough. I tried to multi-thread cUrl but it still takes more time than I'm given.</p> <p>So far the solution for me was manually updating it by specifying limit and offset and reloading like 20 pages every day in browser (I've got about 12000 items to update). This is very annoying as you might imagine.</p> <p>Only solution I can think of is making several cron jobs, running at 00:01, 00:02, etc. each for like 500 items. But I am not sure I can run that many cron jobs on GoDaddy.</p> <p>Can anyone give me an advice on this?</p> <p>Thanks</p> http://stackoverflow.com/questions/1722158/call-a-kohana-helper-from-cron-or-any-url 1 Call a Kohana helper from cron (or any URL) Petruza 2009-11-12T13:25:02Z 2009-11-12T15:28:39Z <p>I need to call a Kohana helper (or any php MVC framework) from a Cron job.<br> How can I do this?<br> The server is Linux, so, I can only think of two possible solutions:<br> 1- Open an URL from the cron job, which hits a controller and does what it has to do.<br> 2- Call a Kohana controller without passing through the web server, but with the PHP CLI. (is that even possible? I don't think so, it might need the web server environment to work)</p> <p>Know a solution? Thanks</p> http://stackoverflow.com/questions/1706782/automatic-database-reads-write-every-second 1 Automatic Database reads/write every second Saif Bechan 2009-11-10T09:56:02Z 2009-11-10T17:46:57Z <p>I am making an auction website, which has an auto-bid system. This system lets people make biddings without having to be there.</p> <p>My question is how to implement such a system. I have made the php files and everything is ready, I've made a html page which refreshes every second. It works, but I'm wondering if there's a better solution.</p> <p>The second option I tried was making an java application which opens the webpage every second. This consumes "a lot" of memory/CPU. Also, I think there is a memory leak somewhere.</p> <p>I am running this application on a dedicated linux server with centOS and Plesk, so I am sure there are a lot of alternatives.</p> <p>For example:</p> <ol> <li><p>A cronjob that executes a php file every minute, where the php file loops for a minute with sleeps.</p></li> <li><p>One php file that loops with 1 second sleeps.</p></li> <li><p>One cronjob that executes and schedules another cronjob after a second.</p></li> <li><p>MySQL scheduler, but I don't know how to implement that, and I heard it locks the db for other writes.</p></li> <li><p>I also heard about cli, perl, python scripts, but I am not familiar with any of them.</p></li> </ol> <p>Please can someone with any knowledge of these options please shed some light for me on this subject. I am searching for a solution that is best suited in terms of speed and memory usage.</p> <p>If someone has another alternative solution I would be glad to hear that also.</p> http://stackoverflow.com/questions/1699423/can-php-cron-jobs-access-session-variables-cookies 1 can php cron jobs access session variables/cookies? kregg 2009-11-09T06:46:42Z 2009-11-09T07:34:24Z <p>hello, i am new to cron jobs and i have done much searching on this topic but i couldn't understand it fully. can cron jobs access cookies or session variables?</p> <p>thanks!</p> http://stackoverflow.com/questions/1693857/how-do-you-get-a-cronjob-executing-a-php-script-to-run-longer-than-30-seconds 0 How do you get a Cronjob executing a PHP script to run longer than 30 seconds. unknown (google) 2009-11-07T17:49:27Z 2009-11-07T18:45:49Z <p>Could you rewrite this into a cron that will run every day for longer than 30 seconds. Also, do i need to edit the .htaccess or php.ini file in the cron.php directory to say something. Over the browser it runs just fine for longer than 30 seconds, over the shell, it runs just fine too. But as a cron set task, it dies after 30 seconds. Im on 1and1 share hosting. </p> <p>0 12 * * * php5 /this/is/the/file/cron.php</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/1652959/whenever-gem-minutely-job-if-minutely-job-takes-more-than-one-minute-then-what 0 whenever gem minutely job. If minutely job takes more than one minute then what Roger 2009-10-31T00:32:32Z 2009-10-31T03:09:54Z <p>I am plannning to use <a href="http://github.com/javan/whenever" rel="nofollow">whenever gem</a> which among other things will also run minutely rake task. If my rake task takes more than a minute then based on the output from whenever gem it seems like the second instance of the rake task will kick-in even though the first one is not quite finished.</p> <p>Will whenever gem will wait for the miutely task to finish before starting the second one?</p> <p>If not then what are the workarounds. I believe this question is better served in serverfault still I am putting it here.</p> http://stackoverflow.com/questions/1636509/regular-delayed-jobs 0 Regular delayed jobs Damien MATHIEU 2009-10-28T10:52:19Z 2009-10-28T13:46:27Z <p>Hello,</p> <p>I'm using Delayed Job to manage background work.<br /> However I have some tasks that need to be executed at regular interval. Every hour, every day or every week for example.</p> <p>For now, when I execute the task, I create a new one to be executed in one day/week/month.</p> <p>However I don't really like it. If for any reason, the task isn't completely executed, we don't create the next one and we might lose the execution of the task.</p> <p>How do you manage that kind of things (with delayed job) in your rails apps to be sure your regular tasks list remains correct ?</p> http://stackoverflow.com/questions/1618238/what-are-the-differences-between-running-an-executable-straight-from-the-command 1 What are the differences between running an executable straight from the command line and from a cron job in Linux? kolrie 2009-10-24T15:15:04Z 2009-10-24T20:32:23Z <p>I have this executable that queries a remote server for a command, executes it on the local machine and returns the stdout (and also possibly stderr) from it back to the server.</p> <p>This executable runs just fine if called from the command line (as root), but I found it's failing for some commands when executed automatically by the cron job.</p> <p>What are the differences in terms of environment (users, stdin, stdout, etc.) I should expect when scheduling this executable to run periodically using crontab?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1606893/problem-scheduling-cron-job-at-hostmonster 0 problem scheduling cron job at hostmonster ankit sachan 2009-10-22T12:32:45Z 2009-10-22T13:49:19Z <p>hello,</p> <p>I am trying to setup cron jobs for a website hosted at hostmonster.com. At the time of configuring timestamp</p> <p>when I use * * * * * </p> <p>the script runs perfectly.</p> <p>but whenever I made changes to these timstamps the script doesnot work</p> <p>say if I use </p> <p>30 18 * * * </p> <p>script doesnot execute. This automated script insert data in the database.</p> <p>Thnx in advance</p>