0
votes
7answers
107 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 h …
1
vote
3answers
38 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 ' …
2
votes
3answers
37 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 a …
0
votes
0answers
37 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
60 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 …
0
votes
3answers
49 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 sc …
0
votes
4answers
98 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 particula …
3
votes
3answers
152 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 …
2
votes
2answers
54 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 …
0
votes
3answers
100 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 e …
1
vote
4answers
85 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
3answers
85 views
how to set cronjob for 2 days?
Hi,
I am using crontab command for db backup purpose,and want to take a backup once every two days.
is this correct 0 0 2 * * *
if wrong please tell me the correct command for set …
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 c …
-1
votes
0answers
56 views
cronjob for mysqldump is giving error [closed]
Hello,
I am using mysqldump command to take backup of my database.
mysqldump --add-drop-table -u user -ppassword databasename > backup/mybackup_$(date +%d%m%Y_%H%M).sql
and …
0
votes
0answers
51 views
How to set crontab using command prompt? [closed]
How to set cronjob/crontab in server using command prompt. Give sample command or sample links.
