Support intro
Sorry to hear youâre facing problems
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
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