19,717 questions
0
votes
0
answers
14
views
ngx cron editor not patching value on edit mode in angular12
I am using Angular 12 with the package [email protected]. The cron editor renders correctly, but when I try to patch an existing cron expression into my reactive form, the UI of the cron editor ...
-3
votes
0
answers
25
views
How to handle crontab across multiple users on the same virtual machine? [closed]
Me and my team are working on a RHEL virtual machine and we were wondering how to handle the same crontabs from multiple users.
When one of the users does set a crontab no one but the user itself can ...
0
votes
1
answer
42
views
Cron job on 2 mounted folders with rsync [closed]
I have 2 mount points
df
Filesystem 1K-blocks Used Available Use% Mounted on
//my-source-address.org/folder 253956100 124456576 119499524 53% /mnt/source
/dev/sdb ...
4
votes
1
answer
135
views
Problem with cron setting in Laravel 12 that is not working
I have a Laravel 12.39 project (on PHP 8.3) on a shared hosting with cPanel access, and in the cron section, I have the following setting to run artisan schedule:run, but it isn't working. This was an ...
0
votes
0
answers
26
views
Endpoint fails when trigger automatically by cron job but succeeds when cron job is triggered manually
I have a serverless function running on Nextjs, hosted on Vercel.
The database is hosted on Heroku. I use EasyCron as a provider for the cron jobs.
Recently, there was an upgrade on the database and ...
2
votes
1
answer
88
views
How can I capture the output of a subprocess (deno) called from a bash script when run by CRON?
I have a bash script that turns off stdout and stderr when not run interactively (i.e. run from CRON).
if [[ ! -t 0 && ! -t 1 ]]; then
#echo "The script is not called ...
1
vote
1
answer
34
views
Azure Function app Cron scheduler - missing runs
My function app is a timer triggered app and uses this cron expression for scheduling. 10 */6 * * * On most days it runs fine, but looking at the trace logs in Application insights it does not run for ...
0
votes
1
answer
73
views
Sidekiq cron job runs multiple times only on the 15th of each month (same schedule works fine on the 1st)
Sidekiq cron job runs multiple times only on the 15th of each month (same schedule works fine on the 1st)
My config/sidekiq.yml, I am using the built-in Sidekiq scheduler.
:concurrency: 5
:queues:
- ...
0
votes
1
answer
80
views
playing sound file when bash script is ran by cron task
below is a bash script that works fine tested in my terminal the sound is played but when it is actually ran in a cron scheduled task there is no sound only the dialog is shown
#!/bin/bash
export ...
2
votes
1
answer
99
views
html part of message is ignored when sending an e-mail with attachment using mail() in cron job
I'am sending an e-mail via cron job. The attachment works and is added to the e-mail message. However the html part that is referenced with $body2 does not come through.
The code looks like follows:
$...
-2
votes
1
answer
102
views
My script works when ran manually but fails in cron. Where am I going wrong?
I've written a script to reboot my router every other day. It works as intended when I test it out manually but doesn't work properly in cron.
#!/bin/bash
c=$(ls -a /tmp | grep -o ".daycount*&...
0
votes
0
answers
82
views
WP cron job is not triggering a custom plugin
I am working on a class-based plugin. I need a custom cron job that will be active when the plugin is active and run the plugin function. Now, I am facing an issue where it is not calling the plugin ...
1
vote
0
answers
30
views
Laravel 12: Run scheduled command at 07:00 UK time while server is on UTC
I’m using Laravel 12 and I want to run a scheduled command every day at 07:00 UK (Europe/London) time, but my server is configured with UTC timezone.
In my bootstrap/app.php I have and its working:
$...
0
votes
0
answers
26
views
Multi-timezone aggregation convention
Currently the structure is like a single parent node and multi children nodes
root: HQ (timezone: 'Asia/Seoul')
children: Middle East Region (timezone: 'Asia/Riyadh'), North America Region (timezone: '...
0
votes
1
answer
50
views
InvalidDataAccessResourceUsageException: could not execute statement [ERROR: column "" is of type jsonb but expression is of type character varying
I am using SpringBoot 3.5, PostgreSQL and Hibernate/JPA as ORM.
While using JSONB column from DB I am having this error.
org.springframework.dao.InvalidDataAccessResourceUsageException: could not ...