Questions tagged as 'crontab'

3
answers

Create Chron on Android

I'm trying to make a cron run every X time in the system android tag to call a service that I have made. The features of cron that I want to do are the following: run independently if the Application is running or not (partially d...
asked by 27.10.2016 / 10:00
1
answer

Run a command every 24 hours and 5 minutes with crontab

I know that for a command to be executed every 24 hours it must be 0 7 * * * [comando] But, for example, to run every 24 and 5 minutes Is there a way to do it?     
asked by 21.12.2018 / 21:27
1
answer

Send a message to n subscribed users when a date / time approaches nodejs

I want to be able to send a message to a user via email or sms, given a date and time for example 10/24/2016 14:00:00 send a message to you one hour before, I am using nodemailer to send via email, and twilio to send via sms, but the question is...
asked by 14.10.2016 / 21:58
1
answer

Run crontab using "notify"

I explain the problem a bit above, but basically that's it. I want to add a script in crontab that runs every minute. The script, on the other hand, should show a simple greeting message. He has no more. Chrontab line: * * * * * sh /tmp/not...
asked by 17.05.2016 / 13:04
1
answer

Run a script with content in crontab format

It's my first question in the forum, I tell you because I want to do this, I have a little program with a view in html to redirect the incoming calls from one phone number to another, we select the date / time of passage, recipient and finally w...
asked by 23.05.2016 / 21:49
2
answers

5 asterisks in the CRONTAB file. What does it mean?

My query is about what the following command means in my linux system, I know it is a bash of CONTRAB but I can not understand why it uses five asterisks: * * * * * curl http://mi-ws/obtenerMensaje     
asked by 04.01.2019 / 21:43
2
answers

Schedule Crontab

I have a problem when I want to schedule a crontab task that allows executing /programas/backups.sh all penultimate days of the all months of the year (in a single line). At 23.00 hours Sending an email at the end of the execution to the root@su...
asked by 18.11.2018 / 22:40
1
answer

Crontab in linux for backup

I made a sh in linux to extract in a compressed folder the copy of my MySql database. (Here's the sh) #!/bin/sh mysqldump -unombreusuario -pclave --opt nombrebd > nombrecarpeta/nombrebackup_$(date +%d%m%Y).sql cd nombrecarpeta tar -zcvf nom...
asked by 22.08.2016 / 19:51
2
answers

Make a lock of a cron

to see if someone gives me a hand, I have a cron that generates a feed of products in 26 languages, and it starts to happen that sometimes gives timeout I have happened to divide the file into 3 instead of having script.php have script1.php scri...
asked by 11.07.2018 / 15:13
2
answers

Python script not executed from Cron

I'm trying to run a Python script from cron. Manually functional without problems. I have already tried all the solutions that can be found on the web. The crontab file is as follows: PATH=/usr/sbin:/usr/bin:/sbin/bin:/sbin:/bin:/home/p...
asked by 27.02.2017 / 16:03