1
vote
2answers
24 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
22 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
20 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
109 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
39 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
40 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
69 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
4answers
117 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 …
0
votes
3answers
53 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
3answers
160 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
62 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
107 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 …
1
vote
4answers
88 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?
1
vote
1answer
59 views
How to get colored emails from crontab?
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.
What is …
