Db error on site creation

Mariadb10.6. Trying to create a site like

bench new-site library.test

Getting the following error:
For key collation_server. Expected value utf8mb4_unicode_ci, found value utf8mb4_general_ci

What should I do? My actual configuration is the following: [client-server]# Port or socket location where to connect# port = 3306sock - Pastebin.com

Set Mariadb formats.

vim /etc/mysql/mariadb.conf.d/erpnext.cnf

Add these lines

[mysqld]

innodb-file-format=barracuda

innodb-file-per-table=1

innodb-large-prefix=1

character-set-client-handshake = FALSE

character-set-server = utf8mb4

collation-server = utf8mb4_unicode_ci

[mysql]

default-character-set = utf8mb4


systemctl restart mariadb