• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Issue MariaDB Settings issue due to Plesk Update

MHC_1

Regular Pleskian
Server operating system version
Alma Linux 9.8
Plesk version and microupdate number
Obsidian 18.0.80
Our Plesk Server was recently updated from 18.0.78 (I think) to 18.0.80 #5 .

## ISSUE

MariaDB updates does not preserve Timezone data settings inside MariaDB. Other settings seem to be preserved.

Our MariaDB uses +1:00 timezone. On EVERY recent significant Plesk update the update always resets the MariaDB timezone to SYSTEM ; which is not correct and causes various other secondary issues.

Please can Plesk updates involving MariaDB set the timezone settings to what they are before the update.

System config settings:
time_zone = SYSTEM​

SHOULD BE:
System config settings:
time_zone = +1:00
(as set before the update).

(not sure whats going on with this formatting, can't change above text back to non-bold on this forum GUI. )
 
To preserve your settings you should create a file in the /etc/mysql/mariadb.conf.d directory...

/etc/mysql/mariadb.conf.d/99-timezone.cnf
Code:
[mariadb]
time_zone = +1:00

Note: These are Ubuntu paths, and are probably different on Alma, but you should be able to do the same.
The main mariadb.cnf should have list of where to to add the settings.

I hope that helps.

LD
 
To preserve your settings you should create a file in the /etc/mysql/mariadb.conf.d directory...

/etc/mysql/mariadb.conf.d/99-timezone.cnf
Code:
[mariadb]
time_zone = +1:00

Note: These are Ubuntu paths, and are probably different on Alma, but you should be able to do the same.
The main mariadb.cnf should have list of where to to add the settings.

I hope that helps.

LD
Useful to know! Thank you!
 
Back
Top