Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.5, 10.6, 10.11, 11.1(EOL), 11.2(EOL), 11.4, 11.5(EOL)
-
None
Description
Server authentication shows password missing error (using password: NO) when we trying to login to the server with a wrong password for a user created with PAM plugin.
Actual error
vagrant@node1:~$ mariadb -ujoe -ptest -e"show grants" |
+-------------------------------------------------------------------------+ |
| Grants for joe@localhost |
|
|
+-------------------------------------------------------------------------+ |
| GRANT USAGE ON *.* TO `joe`@`localhost` IDENTIFIED VIA pam USING 'test' | |
+-------------------------------------------------------------------------+ |
vagrant@node1:~$ mariadb -ujoe -ptest1 -e"select user()" |
ERROR 1045 (28000): Access denied for user 'joe'@'localhost' (using password: NO) |
vagrant@node1:~$
|
Expected error
vagrant@node1:~$ mariadb -ujoe -ptest1 -e"select user()" |
ERROR 1045 (28000): Access denied for user 'joe'@'localhost' (using password: YES) |