this post was submitted on 20 Dec 2023
6 points (87.5% liked)
Nextcloud
442 readers
1 users here now
Community dedicated to Nextcloud
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
So without knowing much about you setup, I would say that there is a cronjob set to run in the background at 3am. You can enter the docker shell and check crontab and see what is scheduled to run. crontab -e to edit for the current user. crontab -l to check the list of configured tasks. Keep in mind that it is by user so any user may be the one with the cron configured, I suppose. It is also possible that the cron is set up on the docker host as well. So maybe try to check crontab on the host as well.
Hopefully, this is helpful. I am not an expert.
Thanks!
I checked crontab -l
root@f6449ccdbac8:/#crontab -l do daily/weekly/monthly maintenance min hour day month weekday command */15 * * * * run-parts /etc/periodic/15min
0 * * * * run-parts /etc/periodic/hourly
0 2 * * * run-parts /etc/periodic/daily
0 3 * * 6 run-parts /etc/periodic/weekly
0 5 1 * * run-parts /etc/periodic/monthly
And under daily i found logrotate:
!/bin/sh
if [ -f /etc/conf.d/logrotate ]; then . /etc/conf.d/logrotate fi
if [ -x /usr/bin/cpulimit ] && [ -n "$CPULIMIT" ]; then _cpulimit="/usr/bin/cpulimit --limit=$CPULIMIT" fi
$_cpulimit /usr/sbin/logrotate /etc/logrotate.conf -s /config/log/logrotate.status EXITVALUE=$? if [ $EXITVALUE != 0 ]; then /usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]" fi exit 0
But i dont understand what could be wrong ๐ค maybe something with the logfile which is in a bind mount?
I will investigate further!
I don't know enough about it, but it does seem like there are issues where logrotate can cause CPU overload issues like the one below.
https://www.estebanpastorino.com/2013/08/27/resource-consuming-logrotate/
When you find put let us know. ๐
Interesting. Gonna look into this during the holidays ๐ thanks for the help