Crontab is a short form of cron table. It is a configuration file that specifies shell commands to run periodically on a given schedule.

learn more… | top users | synonyms

0
votes
1answer
8 views

Crontab keeps running

I have the following cronjob (crontab) running on an amazon ec2 server with Linux AMI: */20 8-22 * * * php -q /var/www/html/xxx.php Unfortunately, the script keeps executing every 20 minutes AFTER ...
-1
votes
0answers
32 views

crontab job does not execute with fixed time [closed]

When I write this line in the crontab */1 * * * * /root/test.sh it works ... but when I write this line 35 14 * * * /root/test.sh it does not work. Summary : with fixed time in the crontab it ...
0
votes
1answer
34 views

matplotlib savefig doesn't work when run with crontab

I'm trying to run a python script with crontab that uses matplotlib to save a plot png. The script runs fine when run normally/not by cron. My crontab file is: SHELL=/bin/bash ...
0
votes
1answer
28 views

Trying to run crontab

I'm trying to run a cron job with crontab -e. I'm using a python code #!/usr/bin/env python import webbrowser handle = webbrowser.get() ...
0
votes
1answer
13 views

cron generating a space in dynamic filename

I have this cron job: */1 * * * * mysqldump -uroot -pPassword --single_transaction --opt dbname | gzip > /home/incredible/backup/dbname_`date +"\%Y\%m\%d-\%k\%M\%S"`.sql.gz The problem is, the ...
0
votes
2answers
19 views

How to pause a php script launched with crontab?

I have a PHP scraper running every night on a very large site. Crontab launches the script at 2am and pkill it at 7am. Now I am concerned that brutally killing the script might result in data loss. ...
0
votes
1answer
13 views

Cron Job every second week day

I need a cron job to run every second weekday for example If cron job last ran on a Thursday it should run on the next Monday The re-run on Wednesday and again on Friday again and on Tuesday and ...
-2
votes
0answers
11 views

Cron Python (with output) Not Working Linux Mint [closed]

Alright I'll try to summarize all the advice I've received. I'm using a single user (administrator) on a Linux Mint 13 System. All of the below has been tried through gnome-schedule, crontab -e and ...
0
votes
1answer
15 views

Is there a way to set events to happen on wakup for a MAC?

When my Mac wakes up after sleeping, I would like it to perform a few bash commands. I know my .profile (or .bashrc) gets sourced when I log in to my environment, but is there a file that gets called ...
1
vote
1answer
31 views

Python script not work in crontab

Here is my script(randombg.py): #!/usr/bin/env python # -*- coding: utf8 -*- import random import subprocess import os BACKGROUND = '/home/david/wallpaper/dell2312' IGNORE_FILES = ...
0
votes
0answers
6 views

Crontab GUI application not working

I created a file and placed it in /etc/cron.d. Below is what my file contained. */1 * * * * root env DISPLAY=:0 notify-send "hello" */1 * * * * root echo "hello" >> /home/ashwin/log The ...
0
votes
2answers
27 views

Setting up the crontab on amazon ec2 cloud (Linux server)

I need to run a php file on every 2 hours, so i am using this command * */2 * * * /usr/bin/php /var/www/html/sports/webservices/rss-insert.php i am also using this * */2 * * * php ...
0
votes
3answers
50 views

Why the script saves all the time the same data?

I have a problem with my php Script that the system runs every minute. My php-script is this: <?php $y = date("Y", time()); $m = date("m", time()); $d = date("d", time()); $h = date("H", time()); ...
0
votes
2answers
29 views

Crontab running issue

I have 500 php files i want to make a crontab to run them automatically (they store XML data in my database) my problem is : when I make a crontab for each php file it works fine. the command like ...
0
votes
1answer
46 views

How do i run a php script every 2 hour on amazon ec2 cloud?

I am trying to run a php script every hour on amazon ec2 cloud but not able to run it. I am using it MAILTO="email@something.com" * */2 * * * /usr/bin/php ...
0
votes
1answer
29 views

cron/wget - Run page every 5 hours and 30 minutes

I need help with 2 things. I'm creating a PHP page that restarts a game server every 6 hours through sending an RCON command (#restart) and I would like to have that page auto-refresh (Change case e.g ...
1
vote
1answer
41 views

Is there a way to write this Cron command succinctly?

I wand to add this to the crontab 3,8,13,18,23,28,33,38,43,48 * * * * foo.sh. Is there a way to write this in a less verbose manner?
0
votes
1answer
31 views

crontab failed with exit status 12

from syslog May 8 01:00:01 mvtspro-main /USR/SBIN/CRON[22645]: (root) CMD (/usr/local/ky4k0b/cdrs_backup_daily.sh) May 8 01:00:01 mvtspro-main /USR/SBIN/CRON[22638]: (CRON) error (grandchild #22645 ...
-1
votes
1answer
18 views

crontab setup on Mac [closed]

I'm trying to setup a crontab on the Mac. It just simply prints the message "Hello there!" to the console at a specific time, but it doesn't seem to work. Below is what I have in the crontab: 28 16 * ...
-1
votes
1answer
40 views

Setting specific time for cron job and then intervals [closed]

I was wondering if with cron, after I set a specific date for the task to run can I then specify it to run in intervals of a specific amount of days from that point on. For example: I know you can do ...
0
votes
1answer
36 views

how to run a bash script with multiple lines on crontab

because vpnc stopped every ~23 hours, I craeted .sh file that is running as cron job every 10minutes, all what it does, it stopped the vpnc process and run it again, I have made it executable by ...
-1
votes
0answers
39 views

Ubuntu cron job not running. Anyone know whats going on? [closed]

Ubuntu cron job not running. Anyone know whats going on? hank@Ubuntu: crontab -l */1 * * * * /root/home/hank/Webscripts/CheckUpdate.bash This CheckUpdate.bash script should be running every ...
0
votes
2answers
26 views

set cron job for a php file

I am new to cron jobs. I have linux shared hosting at go daddy with a cron job manager. Been playing with it since 2 days but no success. Now I decided to create a crontab. I have a php file which ...
0
votes
0answers
55 views

PHP script works in browser but times out as cron job

I wrote a php script that basically fetches RSS feeds and stores them in a database. If I access the script through a browser, it runs flawlessly (with admittedly a two minute wait before it outputs ...
0
votes
0answers
36 views

Can't run php script from cronjob

I'm trying to run without success a cron job, I don't understand if the problem is the php file or the job string: 01 17 03 05 * php -f /home/mn0198/razorphyn/soup/admin/sendmailcron.php ...
0
votes
1answer
22 views

Will crontab hour range a-b run after b too?

Say I have a crontab which runs every 20 minutes and I have a hour range which can vary so lets say a-b, which in one example could look like */20 5-23 * * * /usr/bin/cool_program My question is, ...
-1
votes
1answer
36 views

Linux Cronjob to run every half an hour between specific time interval [closed]

I want to schedule my script such that it is invoked every half an hour between say 6am to 9pm daily....example 6am, 6:30am, 7am, 7:30am and so on and the last to run should be 9pm. How can i achieve ...
-1
votes
2answers
35 views

crontab not working in ubuntu [closed]

I want to create one text file using crontab in ubuntu. I have installed crontab into my system, created crontab file named, crontab_test.txt file in /home folder and crontab_test.txt file has the ...
0
votes
2answers
58 views

Setting Cron job to delete file after 24 hours

I read all the related questions and was unable to understand them. I am using Plesk CPanel to set cron job as it was advised by everyone. I want to delete all files from a folder after 24 hours. ...
-1
votes
0answers
55 views

Can't open application when running sh script from root cron job? [closed]

I have a backup script that is executed by roots crontab and executes perfectly everyday except for one piece of the actual sh script where I ask it to open an application. It fails that part of the ...
0
votes
0answers
4 views

Running Cronjobs as per Local Time rather than Universal Time [migrated]

On running dpkg-reconfigure tzdata in terminal and i get 2 different time on my machine Local time is now: Wed May 1 11:58:55 IST 2013. Universal Time is now: Wed May 1 06:28:55 UTC 2013. ...
2
votes
2answers
53 views

ClassnotFoundException while running a java class through crontab using unix?

I have written a shell script which has a Demo class having main method. Now when I am running my shell using ./file.sh .It works fine. But now I have configured a cronjob to execute that file every ...
0
votes
1answer
25 views

While running crontab- Error- Java is not accessible(fatal)

I want to run few scripts at specific time everyday. I configured it in crontab, and while I run it I see the error "Java is not accessible(fatal problem)". While running the same scripts ...
1
vote
2answers
40 views

Crontab Won't Save Images From PHP Script

I have a PHP script that scrapes images from an RSS feed, resizes them and then saves them. I made a cron job via crontab that will do this once per hour but the images are not saved. I thought it ...
0
votes
2answers
81 views

perl program run from crontab yields wrong values i2cget raspberry pi

I've read a number of other Q&A's that seem to be related, but haven't been able to track down the issue here. I have the following perl script that I use on my Raspberry Pi. I'm hoping to log ...
0
votes
2answers
85 views

Crontab not executing bash script

I very very rarely use Linux and so don't have any experience with bash scripts and cron jobs. This is in fact my first attempt. So it's probably something really simple to fix. I have the following: ...
0
votes
3answers
144 views

Unable to find SqlPlus processes running when executing shell script via Crontab

I have a shell script that's being executed via Crontab. The shell script is properly creating the Sqlplus jobs and they run to completion. What's not working is the while loop at the end where I want ...
0
votes
0answers
26 views

cron job failing to find wmctrl

I have added a cron job to execute a python script that is dependent on wmctrl. The job would fail to execute properly and I have traced this to the fact that the cron job seems to be unable to ...
2
votes
2answers
49 views

Is a script called somewhere

On one of my linux servers I have a script that performs some controls. Is there a way of finding out where this script is called? This can be in another script, cobol program, crontab, ... Opening ...
1
vote
1answer
50 views

Synchronize cronjobs on multiple servers

I am having multiple servers which run the same back-end process in JAVA through cron-tab scheduling. Earlier I had just one server on which I used to schedule all jobs. This was easier to manage. ...
0
votes
3answers
57 views

cronjob not working on live server but works on localhost using crontab

I have written this command in my localhost crontab */1 * * * * /usr/bin/wget -O /dev/null -q http://localhost/whitelabel/cms/cronjobs/calculatestats.php and it works fine on localhost (ubuntu ...
0
votes
0answers
25 views

Crontab tasks running on one sever but not another

I have a set of whenever generated crontab tasks that run as expected on one server but not on an almost identical server. The tasks run as expected manually. One of the differences between the ...
1
vote
1answer
67 views

Crontab won't download file from FTP server using PHP

I have a PHP script I've written to login to an FTP server, download a csv file of suppression data, and merge it with our current suppression list file. It works perfectly when I run it from the ...
0
votes
0answers
46 views

Run different cron jobs on different time

I have two cron jobs, first one should be executed every minutes and the second one should be done every two minutes. In my crontab file */1 * * * * /home/fileserver/Desktop/Test/DBBackgrounder.exe; ...
0
votes
1answer
47 views

sudo password automation is not working as expected when executing from crontab?

I have a shell script as follows. abc.sh echo "Password" | sudo -S /etc/init.d/mysqld status It is working fine when I am executing directly from shell. My problem comes into picture when I am ...
0
votes
1answer
48 views

Running phantomjs from shell_exec with cron

This is really frustrating. Simple thing like this will not work when called by crontab: $responseFull = shell_exec("phantomjs --version"); I must say that phantomjs works fine from terminal, ...
0
votes
1answer
74 views

Ubuntu Cronjob with rsync

Currently on workplaces server we run a daily backup, due to size limits we need it to be only each third day (or something like that). We use Rsync to do the backup. What I'm thinking to do is to ...
0
votes
1answer
33 views

How to password protect a crontab in unix

We need to password protect the activities on the crontab, for ex even if we try crontab -l or crontab -e or crontab -r We would have to enter a password to go to the next ...
2
votes
2answers
80 views

crontab not running a php script properly

I am trying to run an automated mailing service based on SendGrid and cron. I've tried all of the possible combinations to make the PHP interpreter to run my script, and although the cron log says ...
1
vote
1answer
25 views

A file executed from crontab returns different results than from command line

I need to run a script from crontab and this has a simple server load check that looks like this: server_load=$(bash -c '/bin/more /proc/loadavg | /usr/bin/cut -d" " -f1 | /usr/bin/cut ...

1 2 3 4 5 19