Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mariadb 10 Mysql Workbench Maintenace Not Supported

Maintenace tasks such as servers status, client connections etc call come up with the same error.

The version of the server you're trying to connect to is 10.0, which is not supported by Workbench.

Is there a quick hack to allow the use of these with Mariadb 10.04 or 10.06

like image 844
David Reynolds Avatar asked Nov 21 '13 11:11

David Reynolds


1 Answers

MySQL Workbench checks for the specific version of the server since each version supports a different set of configuration options. E.g. some 5.6 options must not be set on a 5.5 server.

MariaDB is not officially supported. It could be possible to hack the version check to make it pass with 10.0, but much with the differences between the fork and the original MySQL versions there is a chance that you could run into errors or break your server's configuration. The settings in MariaDB are not 100% compatible.

For that reason it is recommended to use a different tool that has dedicated support for MariaDB.

like image 117
MikeZ Avatar answered Sep 27 '22 20:09

MikeZ