Original post: http://anothermysqldba.blogspot.com/2014/07/mysql-secureauth-error.html
我以前處理的secure_auth錯誤時,在此它阻止複製的博客文章 。
不過,我想通通過MySQL的客戶端連接時,我會把這個博客帖子更一般的修復。 這是MySQL 5.6之前的服務器。
所以,如果你得到一個secure_auth錯誤,當連接到MySQL下面的步驟應該清除此錯誤。
我以前處理的secure_auth錯誤時,在此它阻止複製的博客文章 。
不過,我想通通過MySQL的客戶端連接時,我會把這個博客帖子更一般的修復。 這是MySQL 5.6之前的服務器。
所以,如果你得到一個secure_auth錯誤,當連接到MySQL下面的步驟應該清除此錯誤。
+---------------+-------------------------------------------+
| User | Password |
+---------------+-------------------------------------------+
| authdtestuser | 34d22ac342c35af2
+---------------+-------------------------------------------+
| User | Password |
+---------------+-------------------------------------------+
| authdtestuser | 34d22ac342c35af2 | |+---------------+-------------------------------------------+
SELECT @@session.old_passwords, @@global.old_passwords; +-------------------------+------------------------+
| @@session.old_passwords | @@global.old_passwords |
+-------------------------+------------------------+
| 1 | 1 |
+-------------------------+------------------------+
mysql> SET @@session.old_passwords = 0; SET @@global.old_passwords=0;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT @@session.old_passwords, @@global.old_passwords;
+-------------------------+------------------------+
| @@session.old_passwords | @@global.old_passwords |
+-------------------------+------------------------+
| 0 | 0 |
+-------------------------+------------------------+
1 row in set (0.00 sec)
mysql> SET PASSWORD FOR 'authdtestuser'@'localhost' = PASSWORD('sshthisisasecret');
Query OK, 0 rows affected (0.00 sec)
mysql> select User , Password from mysql.user where User = 'authdtestuser';
+---------------+-------------------------------------------+
| User | Password |
+---------------+-------------------------------------------+
| authdtestuser | *E48BD8BF1B9F29459E5284AD158443B5B33B70E4 |
+---------------+-------------------------------------------+
1 row in set (0.00 sec)
mysql> SET @@session.old_passwords = 1; SET @@global.old_passwords=1;
mysql> SELECT @@session.old_passwords, @@global.old_passwords;
+-------------------------+------------------------+
| @@session.old_passwords | @@global.old_passwords |
+-------------------------+------------------------+
| 1 | 1 |
+-------------------------+------------------------+
1 row in set (0.00 sec)
| |+---------------+-------------------------------------------+
SELECT @@session.old_passwords, @@global.old_passwords; +-------------------------+------------------------+
| @@session.old_passwords | @@global.old_passwords |
+-------------------------+------------------------+
| 1 | 1 |
+-------------------------+------------------------+
mysql> SET @@session.old_passwords = 0; SET @@global.old_passwords=0;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT @@session.old_passwords, @@global.old_passwords;
+-------------------------+------------------------+
| @@session.old_passwords | @@global.old_passwords |
+-------------------------+------------------------+
| 0 | 0 |
+-------------------------+------------------------+
1 row in set (0.00 sec)
mysql> SET PASSWORD FOR 'authdtestuser'@'localhost' = PASSWORD('sshthisisasecret');
Query OK, 0 rows affected (0.00 sec)
mysql> select User , Password from mysql.user where User = 'authdtestuser';
+---------------+-------------------------------------------+
| User | Password |
+---------------+-------------------------------------------+
| authdtestuser | *E48BD8BF1B9F29459E5284AD158443B5B33B70E4 |
+---------------+-------------------------------------------+
1 row in set (0.00 sec)
mysql> SET @@session.old_passwords = 1; SET @@global.old_passwords=1;
mysql> SELECT @@session.old_passwords, @@global.old_passwords;
+-------------------------+------------------------+
| @@session.old_passwords | @@global.old_passwords |
+-------------------------+------------------------+
| 1 | 1 |
+-------------------------+------------------------+
1 row in set (0.00 sec)