Category "cron"

create celery-scheduler corn expression for every monday and wednesday repeating every 2 weeks

I want to schedule a task which repeats every 2 weeks on Monday and Friday. I want to know how can we create the expression of it through django-celery-beat cro

Create cron job on Google Cloud with custom name

Reading the docs for the Nodejs Scheduler I did not found how to pass a name for the cron job I want to create. Does anyone know if this package supports this?

Not able to use Node.js and Crontab

I know that you can run a Node.js script in Crontab by doing something like: 0 * * * * node /path/to/your/script.js But I want to run a Node.js app, not a s

How to use 0/10 in cron in a yaml file?

I'm trying to use a cron job referenced in a yaml file part as part of my CircleCI CI system: I would like a job to run every 10 mins using the 0/10 * * * * for

Cronjob: Run Python script on server in virtual env

I went through tons of questions and answers in the net. However, I couldnt make my code work. So sorry for raising this question as so many others did. I have

How do I stop Apache Airflow running a task the first time when I unpause it?

I have a DAG. Here is a sample of the parameters. dag = DAG( 'My Dag', default_args=default_args, description='Cron Job : My Dag', schedule_inte

Errors "QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-mizu'" when running phantomjs from contab

When I run phantomJS with crontab, the following errors occur. How can I run it successfully? I am using Ubuntu 17.10. [error] QStandardPaths: XDG_RUNTIME_DIR

Hybris business process in running state

The order confirmation email did not get triggered after placing an order. Looking at the business processes for the order, none of them got triggered. Things

Meaning of H/5 in cron Jenkins

I have a job with as cron: 5 3,21 * * 1-5 This will run my job at 03:05AM and 09:05PM. Now I read it's a best practice to use H. I try: H/5 3,21 * * 1-5

cronjob error in OSX: "no path for address"

I tried running a Python script using cronjob but I get the following error: cron[44405]: no path for address 0x10ff7a000 in grep cron /var/log/system.log Whe

how to create a cron expression for every 2 weeks

Here is cron expression I tried 0 0 0 */14 * ? it is giving following schedules Start Time:- Friday, September 8, 2017 1:25 AM Next Scheduled :- 1. Friday,

Is there a way to have an AWS spot instance register with route53 on boot?

We have some test, dev and ci servers that we have setup as long running persistent spot instances mapped to specific domains using route53. This works great -

Convert CRON expressions to RRULE

I'm working on a backend where we're using CRON expressions to find future occurrences. Now they want to replace CRON with RRULE for more flexible expressions.

Argo workflow: schedule once at a specific time

I want to trigger an Argo workflow to start running at a specific time. I am currently using a workflowTemplate and the rest API to submit a workflow with this

Argo workflow: schedule once at a specific time

I want to trigger an Argo workflow to start running at a specific time. I am currently using a workflowTemplate and the rest API to submit a workflow with this

Laravel Schedule not sending email

It's my first time trying to implement Task Scheduling, I'm trying to send automatic E-mails at a certain time: Before implementing my cron I first tested my em

Separate PHP script in a cron job

I have about 10 accounts. Also, I have a cron job with php script which executes every minute. This script is working for each client one by one. The problem is

How to schedule a cron for the first Thursday of every month

I need to schedule a cron job to run at 3:00 PM on the first Thursday of every month. How can I do this? I have read another topic similar to this, but it is fo

Spring scheduling task - run only once

Is it possible to schedule Spring service method only once at exactly specified time? For example, current time is 2pm but when I hit the action button I want t

How to run a cron job inside a docker container?

I am trying to run a cronjob inside a docker container that invokes a shell script. Yesterday I have been searching all over the web and stack overflow, but I c