cron Questions

2

I have written a github actions workflow yml file to schedule a job to run everyday at a particular time but it's not working. I have even used the cron written in official doc but still it is not ...
Editorial asked 19/12, 2022 at 12:30

3

This is my app.module.ts in NestJS: import { Module } from '@nestjs/common'; import { CatsModule } from './cats/cats.module'; @Module({ imports: [CatsModule, ScheduleModule.forRoot()], }) export ...
Nucleotidase asked 4/5, 2023 at 10:33

3

I've been trying to use notify-send with cron. I've checked out tons of answers given on stackoverflow and other forums. But I don't see the notify-send popup appearing. I'm currently running Ubunt...
Zuber asked 11/12, 2013 at 16:0

4

I am trying to get django-cron working and its not. I followed the instruction here to set up my cron but the problem is that my job only runs when i type python manage.py runcrons on my command li...
Stratocumulus asked 12/4, 2013 at 22:17

2

Solved

docker system prune wants answer y/n. How to i pass in shell script my shell script #!/bin/sh docker stop registry docker system prune docker run -d -p 5000:5000 --restart=always --name registry -v...
Gloucester asked 16/6, 2021 at 13:1

1

I´m trying to use wp_mail in cronjob task, but no email was sent. Instead pure php function mail() works. Question 1): Why does mail() work but wp_mail doesn't? Question 2): Calling www.domain.de...
Mythical asked 27/4, 2018 at 7:38

3

Solved

I am using the "plain" postgresql:alpine docker image, but have to schedule a database backup daily. I think this is a pretty common task. I created a script backupand stored in the container in /...
Chico asked 2/3, 2018 at 17:37

6

Solved

Please suggest an equivalent of Celery in Node JS to run asynchronous tasks. I have been able to search for the following: (Later) Kue (Kue), coffee-resque (coffee-resque) cron (cron) node-celery...
Pandean asked 12/2, 2015 at 6:28

3

Solved

I want to use airflow DAG to run some jobs. I have scheduled the expression to every 25 mins, like */25 * * * *. for instance, it seems to run, like at 6:25, 6:50, and at 7 as well, but I want to r...
Ischia asked 20/10, 2019 at 14:35

4

Solved

I want to schedule a function which is asynchronous (async/await ruturn type) to run for every two minutes. I tried with generic setInterval, node modules like node-schedule , cron, node-cron, asyn...
Simplicity asked 21/10, 2019 at 11:17

3

Solved

I am trying to get my website to send confirmations emails every time someone new register. i did it like following after reading about it, but i am still not convinced that this is the best way t...
Desireah asked 29/9, 2017 at 11:31

5

I am developing an ASP.NET application, which will be uploaded on Azure. If I have multiple instances on Azure and I want to run a cron job that will be necessary for my application. Then, I just w...
Disconnect asked 6/4, 2013 at 11:22

4

I have setup a cron job by using django crontab. As per defined in documentation I defined a test job in cron.py and defined it to run in 1 minute interval in settings.py. #cron.py def test_cron_r...
Phalanx asked 31/1, 2019 at 14:47

6

Solved

I am executing a function every second using Python apscheduler (version 3.0.1) code: scheduler = BackgroundScheduler() scheduler.add_job(runsync, 'interval', seconds=1) scheduler.start() It's ...
Domestic asked 1/12, 2015 at 12:10

4

Solved

Hi I'm running CRON JOB with Laravel Function declaration in Laravel protected function schedule(Schedule $schedule) { echo "test CRON JOB\n"; $file1 = '1.log'; $file2 = '2.log'; $schedule-&...
Coact asked 31/8, 2016 at 2:4

4

Solved

We have a shell script which is run by CRON. The shell script in turn runs a python script which downloads files from an FTP server and then runs a java log processor on those files. The process ru...
Geerts asked 1/5, 2015 at 0:29

4

Solved

In docker we have used deploy: replicas: 3 for our microservice. We have some Cronjob & the problem is the system in running all cronjob is getting called 3 times which is not what we want. We ...
Kieffer asked 30/11, 2021 at 11:9

3

When I usually run my commands I do it from /var/www/project/html/current/ and it looks like this php artisan import:myData. This works great. But I can't get it to work while running it as a cron...
Earlap asked 17/4, 2018 at 16:43

7

Solved

I use cron job to do some CRUD operation using laravel Task Scheduling. On localhost and on my Share-Hosting server it worked fine for months until recently I keep getting this error when I run cro...
Tillis asked 31/7, 2017 at 15:21

7

Solved

I have a cron job set up for daily execution (on my own ubuntu, just for trial) like so: 0 0 * * * /path/exec.sh It is been set for daily execution. I usually open my machine around 8a.m. I woul...
Oliphant asked 27/4, 2016 at 7:20

9

Solved

Here is a cron expression that I tried: 0 0 0 */14 * ?. It creates the following schedule: Start Time: Friday, September 8, 2017 1:25 AM Next Times: Friday, September 15, 2017, 12:00 AM Friday,...
Fardel asked 8/9, 2017 at 5:39

7

I am trying to run a cron job with Firebase. Basically I need to run a function that makes a ton of API calls and pushes data to firebase at 12:00am PST every day. Is there a way for me to do this ...
Calves asked 2/3, 2016 at 3:2

9

Solved

Scenario As a fairly new user of Laravel and Elastic Beanstalk I soon found my self in the need to schedule operations, like most of us do. In the past I had always used simple crontab scheduling...

5

I am using npm bull to add my queue job to handle about sending mail for my project. It runs no problems for a long time, but recently, it shows this error: Error while handling task collect-metric...
Jeff asked 18/4, 2022 at 7:0

5

Solved

I set up some cronjobs a while back using crontab -e. My crontab includes the following line: * * * * * /usr/bin/touch /home/blah/MADEBYCRON It's been weeks since I did this. I have never ...
Xanthus asked 17/2, 2020 at 6:22

© 2022 - 2024 — McMap. All rights reserved.