database/mysql

[mysql] centos 구버전 mysql 사용시 secure_auth 접속 오류 해결

labj 2014. 10. 28. 18:49

[mysql] centos 구버전 mysql 사용시 secure_auth 접속 오류 해결


1. old_passwords=1 추가하기

/etc/my.cnf 파일에 

    old_passwords=1

추가한다.


2. 암호 새로 설정하기

이미 등록한 유저라면 set password for ~ 를 이용해서 localhost, % 로 설정해주면 된다.

mysql> SET @@session.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 |                      1 |
+-------------------------+------------------------+
1 row in set (0.00 sec)

mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'newpass';
Query OK, 0 rows affected (0.03 sec)

mysql> SET PASSWORD FOR 'existinguser'@'localhost' = PASSWORD('existingpass');
Query OK, 0 rows affected (0.00 sec)


3. 접속테스트하기

OK!


[mysql] centos 구버전 mysql 사용시 secure_auth 접속 오류 해결