Some jobs have not been executed since 3 days ago. Please consider increasing the execution frequency

Support intro

Sorry to hear you’re facing problems :slightly_frowning_face:

help.nextcloud.com is for home/non-enterprise users. If you’re running a business, paid support can be accessed via portal.nextcloud.com where we can ensure your business keeps running smoothly.

In order to help you as quickly as possible, before clicking Create Topic please provide as much of the below as you can. Feel free to use a pastebin service for logs, otherwise either indent short log examples with four spaces:

example

Or for longer, use three backticks above and below the code snippet:

longer
example
here

Some or all of the below information will be requested if it isn’t supplied; for fastest response please provide as much as you can :heart:

Nextcloud version (eg, 29.0.5): 29.0.3
Operating system and version (eg, Ubuntu 29.04): Ubuntu 22.04.4 LTS
Apache or nginx version (eg, Apache 2.4.25): replace me
PHP version (eg, 8.3): 8.2.20

The issue you are facing:

Is this the first time you’ve seen this error? (Y/N): Y

Hi!

Help me solve the problem.

I have Nextcloud running on 29.0.3 in a docker container, and I get the message “Some jobs were not completed 3 days ago. Please consider increasing the frequency of execution.”

I had version 29.0.2 before and there was no such problem. I did an update and now this message has appeared.

My cron service is running, here is the task
*/1 * * * * /usr/local/bin/php -d memory_limit=1024M -f /var/www/html/cron.php >> /tmp/cron1.log

My config config/config.php

<?php
$CONFIG = array (
  'htaccess.RewriteBase' => '/',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'maintenance_window_start' => 1,
  'apps_paths' =>
  array (
    0 =>
    array (
      'path' => '/var/www/html/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 =>
    array (
      'path' => '/var/www/html/custom_apps',
      'url' => '/custom_apps',
      'writable' => true,
    ),
  ),
  'upgrade.disable-web' => true,
  'instanceid' => 'ocurlpvlg0a8',
  'passwordsalt' => 'secret',
  'secret' => 'secret',
  'trusted_domains' =>
  array (
    0 => '192.168.10.159:8080',
    1 => '192.168.10.150',
    2 => '10.9.0.5',
  ),
  'datadirectory' => '/var/www/html/data',
  'versions_retention_obligation' => 'auto, 7',
  'trashbin_retention_obligation' => 'auto, 30',
  'dbtype' => 'mysql',
  'version' => '29.0.3.4',
  'overwrite.cli.url' => 'http://192.168.10.159:8080',
  'dbname' => 'nextcloud_app',
  'dbhost' => 'mariadb',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'secret',
  'dbpassword' => 'secret',
  'installed' => true,
  'mail_smtpmode' => 'smtp',
  'mail_sendmailmode' => 'smtp',
  'mail_smtphost' => 'secret',
  'mail_from_address' => 'secret',
  'mail_domain' => 'secret',
  'mail_smtpport' => '1234',
  'mail_smtpstreamoptions' =>
  array (
    'ssl' =>
    array (
      'allow_self_signed' => true,
      'verify_peer' => false,
      'verify_peer_name' => false,
    ),
  ),
  'mail_smtpdebug' => false,
  'default_phone_region' => 'RU',
  'loglevel' => 3,
  'mail_smtpauth' => 1,
  'mail_smtpname' => 'secret',
  'mail_smtppassword' => 'secret',
  'maintenance' => false,
  'defaultapp' => '',
);

Can you tell me what the problem might be? I looked at similar problems on the forum, but I couldn’t find an answer. I will be very glad for your help

I managed to solve the problem by changing the ‘maintenance_window_start’ parameter from 1 to 100 in config/config.php

After that, I started the cron service manually and the label changed

1 Like

step 1: docker exec -it nextcloud(your Images’name) bash

step 2: crontab -u www-data -e
or: crontab -e

step 3: */5 * * * * /usr/local/bin/php -f /var/www/html/cron.php(Add)
or: */5 * * * * su -s /bin/bash www-data -c “/usr/local/bin/php -f /var/www/html/cron.php”(Add)

note: your php path must be the reall path,you can use: which php
to check out.

How come this can solve the problem!?
What does ‘maintenance_window_start’ do?
Thank you so much for your solution!

Some jobs have not been executed since 
 Please consider increasing the execution frequency

This message means:
“There are some (normal/boring/not urgent) jobs to be executed, don’t worry about it, their turn will come at some moment, just be patient.”

I came back here with the same problem and saw my own message and solution. I forgot that I contacted about this topic)

Okay, I’ll just wait this time. Thanks for the tip.

You were right, the status has changed. Thanks for the tip.

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.