데이터베이스 이야기/MySQL
[MySql] 5.7.x 비밀번호 변경
한희성
2023. 7. 25. 21:01
반응형
sudo grep 'temporary password' /var/log/mysqld.log
mysql -uroot -p
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
alter user 'root'@'localhost' identified by 'root1234';
반응형