[mySQL8 로그인 오류 해결] ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) / ERROR 1064 (42000)
🔒 mysql 비밀번호 재설정 ❌ 오류 mysql에서 옳은 비밀번호를 입력했음에도 불구하고 (28000): Access denied for user ‘root’@‘localhost’ (using password: YES) 오류를 마주했다. mysql 비밀번호 맞는데 되지 않는 상황이다. mysql> UPDATE user set password=password(“1234”) where user = ‘root’; 로 비밀번호 초기화를 시도했지만 아래와 같이 반환되었다. ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ’(“1234”) where user = ‘root” at line 1 🙆♂️ 해결 mysql은 버전에 따라 옳은 커맨드를 입력해도 구문 오류가 …