0

I can set MYSQL Workbench to connect to MariaDB with SSL connection as user identified via mysql_native_password, but if I set the identification to ed25519 it fails. Exists any plugin or solution for it? Should I use another free database management software for MariaDB?

1 Answers1

1

MySQL Workbench depends on libmysql, which doesn't provide the ed25519 authentication plugin, since MySQL server doesn't support ed25519 authentication.

As an alternative you can connect via TLS/SSL instead, or try to install the ed25519 client plugin from MariaDB Connector/C (assuming that the authentication api is still the same in MySQL and MariaDB).

Georg Richter
  • 5,970
  • 2
  • 9
  • 15