반응형
sudo mysqld_safe --skip-grant-tables
mysql -u root -p
UPDATE mysql.user SET authentication_string=null WHERE User='root';
FLUSH PRIVILEGES;
exit;
mysql -u root
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';
반응형
'IT > ETC' 카테고리의 다른 글
Basic Javascript (0) | 2020.02.08 |
---|---|
jsp에서 컨트롤러갈때 한글 깨짐현상(02/07/20 cudo notes 5) (0) | 2020.02.07 |
Applied Accesbility (0) | 2020.02.05 |
Basic settings for web(02/05/20 cudo notes 3) (0) | 2020.02.05 |
안드로이드 스튜디오 계산기 mainactivity.java (0) | 2020.02.04 |