Tagged Questions
Crontab is a short form of cron table. It is a configuration file that specifies shell commands to run periodically on a given schedule.
13
votes
5answers
14k views
How do you run a crontab in Cygwin on Windows?
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 ...
11
votes
1answer
6k views
Where can I set environment variables that crontab will use?
hey all,
I have a crontab running every hour... The user running it has evironment vars in the .bash_profile that work when the user runs the job from the terminal. However, obviously these don't get ...
9
votes
6answers
3k views
Use PHP to create, edit and delete crontab jobs?
Is it possible to use PHP to create, edit and delete crontab jobs?
I know how to list the current crontab jobs of the Apache user:
$output = shell_exec('crontab -l');
echo $output;
But how to add ...
9
votes
4answers
3k views
How to pass in password to pg_dump?
I'm trying to create a cronjob to back up my database every night before something catastrophic happens. It looks like this command should meet my needs:
0 3 * * * pg_dump dbname | gzip > ...
8
votes
4answers
3k views
Specifying “all odd values” in crontab?
In crontab, I can use an asterisk to mean every value, or "*/2" to mean every even value.
Is there a way to specify every odd value? (Would something like "1+*/2" work?)
7
votes
1answer
34 views
command line script php does not run
i am trying to build a php script to process data manually to later convert it to a cronjob. this script also get data from mysql and 3rd party soap. when i try to run it from command line i have an ...
7
votes
1answer
826 views
Python: how to set virtualenv for a crontab?
I want to set up a crontab to run a Python script.
Say the script is something like:
#!/usr/bin/python
print "hello world"
Is there a way I could specify a virtualenv for that Python script to run ...
7
votes
4answers
3k views
Django custom command and cron
I want my custom made Django command to be executed every minute. However it seems like python /path/to/project/myapp/manage.py mycommand doesn't seem to work while at the directory python manage.py ...
7
votes
6answers
2k views
How to test things in crontab
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 ...
7
votes
10answers
7k views
How to create cronjob using bash
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?
6
votes
2answers
17k views
cron jobs under mac os 10.6 snow leopard
I'm trying to set up an automated svn commit to run semi-hourly under mac os 10.6, but the crontabs i'm adding to cron don't seem to be valid and/or don't seem to even be looked at by cron. For ...
6
votes
6answers
794 views
How do YOU deploy cron jobs to production?
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, ...
5
votes
2answers
237 views
Good alternative to crontab for java batch programs?
I've been looking for replacements for my companies current batch processing system(java SE + crontab), since there is a lot of java code/shell script duplication, most jobs are ETL and do very ...
5
votes
4answers
648 views
What should I use for simple cron jobs management in PHP project?
I want a simple cron-like management in PHP project
there are some things I would like to have:
php job worker is just plain script that is placed in some subdir inside project directory
there is ...
5
votes
7answers
782 views
Cron running but functionality not working
I have several PHP files to be run by cron. I set up the crons using command-
crontab crontab.txt
Inside the crontab.txt file, I have written cron commands like this:-
#(Updating tutor activities) ...
4
votes
1answer
40 views
unix crontab doesn't handle python's subprocess.popen well
i am using crontab to launch a python script that is suppose to launch several procceses by itself using subprocess.popen(). i use this command to launch a procedure that may take 30 minutes - so i ...
4
votes
2answers
226 views
CronExpressions - any librarys out there to generate them/convert them into human readable form?
I am using Quartz.NET, and my scheduler relies heavily on the use of cron expression's - such as the ones detailed on this link:
http://quartznet.sourceforge.net/tutorial/lesson_6.html
Ideally, I'd ...
4
votes
1answer
195 views
Cronjobs not executing php scripts, no mailto warnings received!
Here's my situation:
I'm trying to run a php script via cron, and I've got a crontab (/etc/crontab) that looks like this:
SHELL=/bin/sh
...
4
votes
3answers
725 views
Problem running python from crontab - “invalid Python installation”
I have python 2.7 installed on my linux box, and I'm trying to schedule a python script via crontab. The script works fine from the command line, however when running via cron I get:
Traceback (most ...
4
votes
2answers
304 views
Run C# .exe with crontab or daemon?
I was wondering if i can run a dll (c#) with crontab ? The dll is compile with mono.
thx :)
-- EDIT --
Well it can be a .exe. I was looking at daemons on mac and linux, do you think I can run .exe ...
4
votes
3answers
355 views
How to check if cronjob exists with PHP?
Is there a way to know if a cronjob already exists with php?
I want it to work on most hostings, even shared.
4
votes
2answers
278 views
PHP function that receive a cron string and return the next run timestamp
I need to develop a task system that should be able to work on servers that doesn't support crontab.
I'm asking if there is any existing code that can take a cron string (e.g. '0 0,12 1 */2 *' and ...
4
votes
4answers
4k views
libclntsh.so.11.1: cannot open shared object file
I want to schedule a task on linux by icrontab, and the task is written in python and have to
import cx_Oracle module, so I export ORACLE_HOME and LD_LIBRARY_PATH in .bash_profile, but
it raise the ...
4
votes
6answers
1k views
Executing php with crontab
I'm trying to run a php-script on a scheduled basis. So I'd thought crontab was a good idea. The server I'm using is on Linux which I'm not that familiar with. So the problem I'm having is, I don't ...
3
votes
2answers
111 views
CodeIgniter Cron Job on Shared Hosting?
I am trying to learn how to do my first cron job using CodeIgniter. In the past, it seemed the only way to do this with CI was to use the wget command instead of php.
The CodeIgniter User Guide, ...
3
votes
3answers
102 views
How do set cron to run my script every 40mins/25mins?
I want a script to run every 40mins beginning on the 40th minute.
so that means:
00:40, 01:20, 02:00, 02:40, 03:20...
So I made this entry to cron:
*/40 * * * * /path/to/script/foo.sh
...
3
votes
5answers
210 views
How to start/stop a cronjob using PHP?
If I type crontab -l in the command-line I can see the following line:
# * * * * * /usr/bin/php /home/user/every_minute_script.php
To start this cronjob, I need to edit the file using crontab -e ...
3
votes
4answers
149 views
Can't execute command from crontab?
I want to update some stuff in my database everyday at 16:00.
So I use crontab which execute command which run my file.php which run the update. It works perfectly when I execute the command in the ...
3
votes
4answers
149 views
Job Scheduling - crontab the best solution?
I am in the middle of developing a web-based application that heavily depends on job scheduling. The jobs will be extremely short, such as a single HTTP request. However, there will be lots of them. ...
3
votes
1answer
156 views
How to know if cronjob is failing (running a python command)
When I run this command, the output message is being saved into ok.txt:
/home/admin/virtualenvs/x.com/bin/python /home/admin/www/x.com/x/app/manage.py help | tee ok.txt
I have this cronjob:
* * * ...
3
votes
3answers
124 views
cron job at certain time of day - what's the limit?
I'm after a little advice around using Cron jobs with PHP. My scenario is this:
I have a website with a large membership. Users have one or several URLS associated with their account. At midnight (or ...
3
votes
2answers
371 views
Crontab Source File
Recently I created a bash script which I am supposed to run in cron.
After preparing the bash script and its normal working, I put it in Cron and found that it was failing. As as second step , I ...
3
votes
2answers
455 views
Best practices for maintaining cronjobs and shell scripts?
I have inherited a sprawling crontab that I need to maintain and update. I don't have much experience with it or bash scripting (I think I've got a decent grip on the basics) and I want to do a good ...
3
votes
1answer
109 views
a $( ) in crontab
In crontab, can do something similar to this?
* * * * * echo $( date +%F) >> /path/date.txt
3
votes
3answers
416 views
Detect if python script is run from console or by crontab
Imagine a script is running in these 2 sets of "conditions":
live action, set up in sudo crontab
debug, when I run it from console ./my-script.py
What I'd like to achieve is an automatic detection ...
3
votes
2answers
309 views
Is there a Python module to get next runtime from a crontab-style time definition?
I'm writing a dashboard application and I need a way to figure out how long an item is "valid", i.e. when should it have been superseded by a new value (it's possible to have an error such that the ...
3
votes
7answers
1k views
Using crontab with django
I need to create a function for sending newsletters everyday from crontab. I've found two ways of doing this on the internet :
First - file placed in the django project folder:
#! /usr/bin/env ...
3
votes
5answers
2k views
Crontab + rails3 + bundler
I'm running a crontab that executes a rake task. I'm getting the following error (with MAILTO from crontab):
rake aborted!
no such file to load -- bundler
/Users/Mendel/Sites/misnooit/Rakefile:4
(See ...
3
votes
4answers
810 views
Is there a Javascript cron implementation somewhere that I'm missing?
I'm aware of timing issues in Javascript, how its not exact/off by milliseconds etc, but I need something to at least attempt to do browser-based scheduling.
In terms of features, I'm thinking ...
3
votes
3answers
183 views
How do I know if jobs have been/are performing? - Crontab
I have followed the suggestion in this question
as I am using Django, I have set the script to store date and time of each run of the script in the db, but no entry has been stored yet in the ...
3
votes
1answer
295 views
crontab oracle problem in linux
I created an app which is need to run in linux started by crontab. An error happened when it tried to connect oracle database: it returned SQLO_INVALID_DB_HANDLE. But if started it manually ...
3
votes
3answers
548 views
crontab report of what runs in a specified start and end datetime
Are there any tools or reports out there that given a crontab file can output which jobs run within a specified time-frame.
Our crontab file has become very large and our system administrators ...
3
votes
5answers
759 views
Creating crontab via Capistrano instead of using crontab -e
I would like to include cron tasks in my Capistrano deployment files instead of using the following command to manually edit the crontab file:
crontab -e [username]
Is there a script I could use ...
3
votes
8answers
3k views
Going nuts with executing python script via crontab on debian!
This is what my crontab file looks like:
* * * * * root /usr/bin/python /root/test.py >> /root/classwatch.log 2>&1
This is what my python script looks like:
#!/usr/bin/python
print ...
3
votes
2answers
2k views
why download only for apt-get cron job
I'm putting a crontab job for updating with apt-get once a day (running Debian Lenny, there are updates almost daily). But almost all examples i've seen of this cron job invoke the -d flag.
This ...
2
votes
1answer
70 views
Is there any handy command line tool to manage Cron jobs?
Would someone suggest any handy command line (NOT web) tool or script which adds, enables and disables Cron jobs? I am looking, for example, for the following (or similar) behavior:
sh manageCron.sh ...
2
votes
2answers
108 views
How to run a PHP script with cronjob? [closed]
I'm trying to run a PHP script, like writing something in a txt file. If I manually load the file it works, but not with a cron job. I have cPanel and I followed what I read in the help page, but ...
2
votes
1answer
54 views
How to add mysql-python image path to crontab
Crontab always try to load mysql-python image from my home directory, while the library image is actually in /Library/Python/2.7/site-packages/MySQL_python... How can I point crontab to the right ...
2
votes
2answers
62 views
php script that run continously and concurrently with cronjob
I have 3 scripts that do some stuff.
I want to run them continously and concurrently.
Let's say for example:
First script took 30 minutes to finish.
Second - 20 mins.
Third - 5 mins.
So I need ...
2
votes
1answer
289 views
How to use CRON in xampp windows? Step by step to be followed to use in development
What are the steps to be taken in xampp[codeigniter] to use cron and how to make the cron to call our function in XAMPP Windows? Do we need to download any exe to run this cron?
create a batch ...