today I noticed an error message within the kopano-server.log saying something about an mysql-settings-issue.
As I doublechecked the UCR, the config option is set to the optimal value, but mariadb seems to use default settings.
All UCR values are written to /etc/mysql/mariadb.conf.d/60-ucr.cnf but maria doesn’t use them
Background: if you had MySQL installed earlier, the package management scripts will move your old MySQL-specific configuration file to my.cnf.migrated. The my.cnf should then be converted into a symbolic link using the alternatives system; and after such a migration the alternative chosen by default will be the my.cnf.migrated file. That one in turn is MySQL-specific and does not include the mariadb.conf.d directory by default.
You can reconfigure the link to point to the default mariadb.cnf instead which does include the mariadb.conf.d sub-directory by running update-alternatives --config my.cnf — but make sure to manually migrate any setting you might need from the old my.cnf.migrated to a file in mariadb.conf.d
I needed to switch to /etc/mysql/mariadb.cnf with update-alternatives --config my.cnf.
Thank you very much!
Now the config values entered in the UCR are used.