0
votes
1answer
31 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
70 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
35 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
2answers
28 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
1answer
47 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
7answers
113 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 …
1
vote
3answers
40 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"
…
2
votes
3answers
50 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 …
0
votes
0answers
39 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?
0
votes
5answers
85 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? …
0
votes
3answers
60 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
4answers
153 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 …
3
votes
3answers
163 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, …
2
votes
2answers
65 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 …
0
votes
3answers
110 views
Will cron execute php files or only CGI scripts?
Can .php be used in Crontab function on Linux or wil it execute only .CGI scripts?
I'm using Plesk Control panel, I did the settings as per the Crontab doc, but i think it's not executing the php …
