Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)
Error Message Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled) MySQL을 업그레이드하거나 구버전의 DB Dump를 신버전의 MySQL 서버로 옮기면 발생하는 메시지. MySQL의 password 함수 취약점이 개선되어, 암복호화 되는 값이 다르기 때문에 발생한다. mysql> SELECT PASSWORD('1234'), OLD_PASSWORD('1234'); +-------------------------------------------+----------------------+ | PASSWORD('1234') | OLD_PASSWORD('1234') | ..