We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm using this plugin: https://mariadb.com/kb/en/library/authentication-plugin-unix-socket/
And I can access MySQL from command line. However using this code:
mysql::Pool::new("mysql://user@localhost/db").unwrap();
will raise this error:
MySqlError { ERROR 1698 (28000): Access denied for user 'user'@'localhost' }
Edited
It seems the library doesn't support this use case yet. So I applied another plugin mysql_native_password for that user, and it worked.
mysql_native_password
It would be great if you consider adding support for unix_socket plugin.
unix_socket
Thank you,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I'm using this plugin: https://mariadb.com/kb/en/library/authentication-plugin-unix-socket/
And I can access MySQL from command line. However using this code:
will raise this error:
Edited
It seems the library doesn't support this use case yet. So I applied another plugin
mysql_native_password
for that user, and it worked.It would be great if you consider adding support for
unix_socket
plugin.Thank you,
The text was updated successfully, but these errors were encountered: