Mysql 비밀번호 재설정하기

BackEnd_Ash.log·2020년 8월 29일
0

database

목록 보기
9/31

비밀번호 알고있는 경우

alter user 'root'@'localhost' identified with caching_sha2_password by '##tkakrnl12';

비밀번호 초기화

우선적으로 서버를 중지한다.

service mysql stop
update mysql.user
	set authentication_string=password('password'),
    	password_expired='N',
        plugin='mysql_native_password'
        where user = 'root';
flush privileges;

이후 서버를 다시 가동해줍니다.

service mysql restart
profile
꾸준함이란 ... ?

0개의 댓글