1. /etc/my.cnf 에 skip-grant-tables 추가 2. 터미널에서 mysql -u root 3, 아래 쿼리 문 입력 UPDATE mysql.user SET authentication_string=null WHERE User='root';FLUSH PRIVILEGES;exit; 4. /etc/my.cnf 에 skip-grant-tables 삭제 후 재시작 systemctl restart mysqld 5. 터미널에서 mysql -u root 6. 아래 쿼리 문 입력 ALTER user 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'yourpasswd';FLUSH PRIVILEGES;exit;