ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) $ mysql.server stop $ mysql.server start --skip-grant-tables $ mysql -u root #mysql 버전 5.7 이하 update mysql.user set password=password('변경할 비밀번호') where user='root'; # mysql 버전 8.0 미만 update mysql.user set authentication_string=password('변경할 비밀번호') where user='root'; # mysql 버전 8.0 이상 update mysql.user set authent..
2023.04.10