728x90
반응형
- 터미널을 켜서 root 계정으로 로그인합니다.
mysql -u root -p
# 기본 비밀번호를 이용해서 로그인
- mysql DB를 사용합니다.
use mysql;
- password 변경 쿼리를 적용합니다. (버전 별로 다름)
# username = 'root', Host = 'localhost'라고 가정
# 'new password'에는 바꾸고 싶은 비밀번호를 입력
# version 5.6 이하
> update user set password=password('new password') where user = 'root';
# version 5.7 이상
> update user set authentication_string=password('new password') where user = 'root';
# version 8.x 이상
> alter user 'root'@'localhost' identified with mysql_native_password by 'new password';
- 변경사항을 적용합니다.
flush privileges;
728x90
반응형
'Programming Language > MySQL' 카테고리의 다른 글
[MySQL] upsert에 대한 이해 (0) | 2023.12.27 |
---|---|
[MySQL] MySQL 기초 - 2 (0) | 2023.12.27 |
[MySQL] MySQL 기초 - 1 (1) | 2023.12.27 |
[MySQL] Mac M1 MySQL 재설치 (0) | 2023.12.27 |