0
votes
1answer
33 views
run cronjobs and send to email problems
Hey
I want to creat a cron job that runs every 10 min < time now
and mail me a email with the follow txt.
"deleted orders"
my code looks like this.
MAILTO=”my_email@mail.com”
*/10 * * * * …
1
vote
1answer
79 views
php cron job every 10 minutes
Hi,
I'm trying to run a cron job so that a php script will run every 10 minutes on my server. The script updates a database. Right now my crontab looks like:
* /10 * * * * /usr/bin/php …
1
vote
2answers
36 views
PHP generate a crontab
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 …
0
votes
1answer
59 views
Crontab in Plesk
Hi,
I'm trying to run a test script using crontab within Plesk. The php file simply emails me a message
mail('me@somewhere.com','Cron Test','Test');
My path to php is /user/bin/php
I have entered …
0
votes
2answers
32 views
Executing an script with crontab returns 127 error code
I am executing a script manually on my UNIX system manually, it runs successfully and updated required records in ORACLE database. How ever when I exwcute the same script with crontab my process exits …
0
votes
7answers
125 views
Call function periodically in Java
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 …
0
votes
4answers
167 views
Edit crontab programmatically and force the daemon to refresh
Hi,
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 …
1
vote
3answers
45 views
Eval to variable failing (w/Crontab)
Here's a snippet of a bash script I'm writing to log CPU loads:
#!/bin/bash
# ... irrelevant nonsense ...
cmd1="/usr/bin/mpstat -P ALL | egrep '(AM|PM)([[:space:]]+)(0)' | tr -s ' ' | cut -d' ' -f4"
…
0
votes
5answers
93 views
Getting started with cronjobs on a Mac.
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? …
2
votes
3answers
54 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
3answers
168 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, …
0
votes
3answers
62 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 …
0
votes
0answers
40 views
Run a command every week with Cron? [closed]
Simple question- what would a crontab entry look like for a command I want to run every week on Saturday at 8:05 AM?
2
votes
2answers
71 views
django custom command and cron
Hello
I want my customly 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 …
1
vote
4answers
95 views
java scheduler
Which is the best way to run a process in scheduler. I can either do it crontab or Spring-Batch. Any other better option?
