서비스에서 mysql 서비스 중지
mysqld --datadir="C:\ProgramData\MySQL\MySQL Server 8.0\Data" --console --skip-grant-tables --shared-memory
창 그대로 유지 후
cmd 하나 더 띄워서 총 cmd 창 2개
mysql -u root
use mysql
update user set authentication_string=null where user='root';
flush privileges;
alter user 'root'@'localhost' identified with caching_sha2_password by '1234';
ctrl+c
'프로그래밍 언어 > SQL' 카테고리의 다른 글
[SQL] 키(슈퍼키,대체키,후보키,기본키,외래키) (0) | 2022.07.11 |
---|---|
[SQL] DDL, DML, DCL 이란? (0) | 2022.07.09 |
[SQL] 중첩 트리거 (Nested Trigger) (0) | 2022.06.12 |
[SQL] 트리거 (0) | 2022.06.12 |
[SQL] 커서 #1 (0) | 2022.06.07 |