본문 바로가기
이과/SQL

mysql 처음 실행하고 에러뜰때 / You must reset your password using ALTER USER statement before executing this statement

by 코딩초밥 2022. 4. 14.
반응형

mysql 설치하고 

mysql -u root - p

하고 들어갈려는데

You must reset your password using ALTER USER statement before executing this statement

이런 에러가 뜬다. 

 

초기 설정된 비밀번호 바꾸라는 것이다 바꿔주자.

 

해결방법

ALTER USER 'root'@'localhost' IDENTIFIED BY '내가원하는비번';

flush privileges;

 

반응형

댓글