Чтобы установить стандартный часовой пояс на MariaDB , вам нужно перейти в файл 50-server.cnf .
sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf
Затем вы можете ввести следующую запись в разделе mysqld.
default-time-zone='+01:00'
Пример:
#
# These groups are read by MariaDB server.
# Use it for options that only the server (but not clients) should see
#
# See the examples of server my.cnf files in /usr/share/mysql/
#
# this is read by the standalone daemon and embedded servers
[server]
# this is only for the mysqld standalone daemon
[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
### Default timezone ###
default-time-zone='+01:00'
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
Изменение должно быть сделано через файл конфигурации, в противном случае сервер MariaDB сбросит таблицы mysql после перезапуска!