728x90
반응형
5.6 이하
mysql> ㅊㅊㅋㅋ;
5.7 이상
mysql> update user set authentication_string=password('new password') where user='root';
8.0 이상
mysql> alter user 'root'@'localhost' identified with mysql_native_password by 'new password'; mysql> set password for 'root'@'localhost' = password('new password');
mariadb 10.4 이상
set password for 'root'@'localhost' = password('변경할 비밀번호');
728x90
반응형
LIST
'linux > DB' 카테고리의 다른 글
mysql dump (DB 백업) (0) | 2022.02.28 |
---|---|
xtrabackup 사용법 (innobackupex) (0) | 2021.12.02 |
mysql engine 확인 방법 (0) | 2021.11.03 |
MySQL FEDERATED 설정, 확인 방법 (0) | 2021.07.20 |
mysql 계정 생성 및 권한 부여 (0) | 2021.07.20 |