mysql 비밀번호 변경

sangwoo noh·2022년 7월 18일
0

mysql

목록 보기
8/11

변경 방법

1. root권한이 있는 계정 로그인

$ mysql -u root -p

2. 사용자 정보가 포함된 'mysql' DB 사용

$ use mysql;

버전 별 password 변경 쿼리 적용

5.6 이하

$ mysql > update user set password=password('new password') where user = 'root';

5.7 이상

$ mysql > update user set authentication_string=password('new password') where user = 'root';

8.x 이상

$ mysql > alter user 'root'@'localhost' identified with mysql_native_password by 'new password';

변경사항 적용

$ mysql > flush privileges;
profile
하기로 했으면 하자

0개의 댓글