Hi,
I’ve just noticed that I cant modify MariaDB settings in GUI, all the parameters are blank:
It is a bug?
Hi,
I’ve just noticed that I cant modify MariaDB settings in GUI, all the parameters are blank:
It is a bug?
Hi @saxico
It works find on my end.
Did you see the current parameters when executing this command?
v-list-sys-mysql-config json
Also, show the output of this command:
ls -la /etc/mysql
Mariadb overwrites sometimes my.conf
When that is done the settings are removed…
This is what I get:
{
“CONFIG”: {
“max_user_connections”: “”,
“max_connections”: “”,
“wait_timeout”: “”,
“interactive_timeout”: “”,
“max_allowed_packet”: “”,
“config_path”: “/etc/mysql/my.cnf”
}
}
My MariaDB version is 11.4 in a Ubuntu 22.04 install
Show the output of second command.
cat my.conf
it is probally some redirect to mariadb.conf.d
rm my.conf
mv my.conf.vst.back my.conf
And it should work again
Thanks!