AWS t2.xlarge
OS : Redhat 8.6
MySQL Version : 8.0.31
mysql -u root -p
설치 후 비밀번호는 그냥 엔터치라고 나오는데 오류가 난다.
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
grep 'temporary password' /var/log/mysqld.log
로그에서 'temporary password' 를 찾아서 임시 비밀번호를 입력하면 된다.
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MYPASSWORD';~~텍스트~~
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
이런 오류가 나면 비밀번호를 더 복잡하게 만들면 된다.