웹마스터 팁

http://dev.mysql.com/doc/refman/5.0/en/old-client.htmlMySQL 버전이 5.0 으로 올라가면서
암호화 알고리즘이 변경되어 이전의 사용자가 등록된 데이터베이스를 로그인이 안되거나 관리자 로그인이
안되는경우가 있다 ㅇㅅㅇ..

다음과 같이 하자...........





Tell the server to use the older password hashing algorithm:

1. Start mysqld with the --old-passwords option.

    Assign an old-format password to each account that has had its password updated to
    the longer 4.1 format. You can identify these accounts with the following query:

2. mysql> SELECT Host, User, Password FROM mysql.user     -> WHERE LENGTH(Password) > 16;