Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Not a Bug
-
10.6, 10.11, 11.4, 10.5(EOL), 11.1(EOL), 11.2(EOL), 11.5(EOL)
-
None
-
Not for Release Notes
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) |