Bug #70142 | MySQL Workbench 6.0.6 PAM Auth Fails | ||
---|---|---|---|
Submitted: | 24 Aug 2013 5:03 | Modified: | 12 Sep 2013 0:23 |
Reporter: | Jervin R | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Workbench | Severity: | S3 (Non-critical) |
Version: | 6.0.6 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[24 Aug 2013 5:03]
Jervin R
[29 Aug 2013 7:37]
MySQL Verification Team
Hello Jervin, Thank you for your bug report. I've tried to reproduce this issue with official MySQL builds and noticed that WB(latest GA, using on Win7) have no issues either in testing connection and/or connecting and executing queries against MySQL 5.5.33(GA) which is hosted on Oracle Linux 6. So, this seems to be Percona Server specific issue, could you try with official Oracle/MySQL builds? Please let us know how it goes. // How to repeat ** ensure below parameter is included in my.cnf under mysqld group [mysqld] plugin-load=authentication_pam.so ** Bring up MySQL Server 5.5.33 ** Ensure PAM plugin is loaded mysql> select plugin_status from information_schema.plugins where plugin_name='authentication_pam'; +---------------+ | plugin_status | +---------------+ | ACTIVE | +---------------+ 1 row in set (0.00 sec) mysql> select version(); +-------------------------------------------+ | version() | +-------------------------------------------+ | 5.5.33-enterprise-commercial-advanced-log | +-------------------------------------------+ 1 row in set (0.00 sec) mysql> show plugins\G .. *************************** 24. row *************************** Name: authentication_pam Status: ACTIVE Type: AUTHENTICATION Library: authentication_pam.so License: PROPRIETARY 24 rows in set (0.00 sec) // Followed steps from http://dev.mysql.com/doc/refman/5.5/en/pam-authentication-plugin.html#pam-authentication-p... ** Verify that Unix authentication in PAM permits you to log in as ushastry with password *************. ** Set up PAM to authenticate the mysql service. Put the following in /etc/pam.d/mysql: vi /etc/pam.d/mysql #%PAM-1.0 auth include password-auth account include password-auth ** Create a MySQL account with the same user name as the Unix login name and define it to authenticate using the PAM plugin: // Created below user account CREATE USER 'ushastry'@'localhost' IDENTIFIED WITH authentication_pam AS 'mysql'; CREATE USER 'ushastry'@'%' IDENTIFIED WITH authentication_pam AS 'mysql'; GRANT ALL PRIVILEGES ON *.* TO 'ushastry'@'localhost'; GRANT ALL PRIVILEGES ON *.* TO 'ushastry'@'%'; FLUSH PRIVILEGES; shell>export LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN=1 shell>export AUTHENTICATION_PAM_LOG=1 ** Try to connect to the MySQL server using the mysql command-line client. For example: [root@cluster-repo mysql-advanced-5.5.33]# bin/mysql -u ushastry -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.5.33-enterprise-commercial-advanced-log MySQL Enterprise Server - Advanced Edition (Commercial) Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> mysql> SELECT USER(), CURRENT_USER(), @@proxy_user; +--------------------+--------------------+--------------+ | USER() | CURRENT_USER() | @@proxy_user | +--------------------+--------------------+--------------+ | ushastry@localhost | ushastry@localhost | NULL | +--------------------+--------------------+--------------+ 1 row in set (0.00 sec) // Try to connect to the MySQL server using WB Screenshot joining shortly // Confirmed tables created mysql> use test; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> show tables; +----------------+ | Tables_in_test | +----------------+ | t1 | +----------------+ 1 row in set (0.00 sec) mysql> Thanks, Umesh
[29 Aug 2013 7:38]
MySQL Verification Team
WB Testing connection..
Attachment: PAM_1.png (image/png, text), 207.42 KiB.
[29 Aug 2013 7:39]
MySQL Verification Team
WB connecting and executing queries..
Attachment: PAM_2.png (image/png, text), 194.08 KiB.
[30 Aug 2013 5:06]
Jervin R
Unfortunately, I don't have access to an enterprise binary at the moment so I cannot confirm if repeatable there or not.
[11 Sep 2013 4:08]
Jervin R
Umesh, I noticed on your screenshot/procedure that the connection was only tested and not saved. The failure I was reporting was that during testing, the connection is OK but after saving and double-clicking the connection from the list it would then failed. Did you get the same behavior?
[11 Sep 2013 4:54]
MySQL Verification Team
Hello Jervin, Please note that the static screenshot which I uploaded here were just to show that connection was tested and also able to connect using the saved connection. I was able to: 1. Test connection, and later saved connection 2. Used saved connection to connect (double-clicking) Thanks, Umesh
[12 Sep 2013 0:23]
Jervin R
Umesh, thanks for confirming.
[15 Oct 2013 17:18]
Paulo Cabido
This also affects me on version 6.0.7. Same setup with precona mysql-server 5.5.13 with auth_pam_compat enabled. Testing and starting the command line connection works, opening the actual connection always ends in permission denied. I can replicate this using WB on OS X and Linux.