본문 바로가기
ERROR

[ERROR] Mysql 설치 후 로그인 안됨 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

by DenverAlmighty 2022. 11. 20.
반응형

0. 실행 환경

AWS t2.xlarge
OS : Redhat 8.6
MySQL Version : 8.0.31

1. ERROR

mysql -u root -p

설치 후 비밀번호는 그냥 엔터치라고 나오는데 오류가 난다.

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

2.해결 방법

2-1) 임시 비밀번호 찾기

grep 'temporary password' /var/log/mysqld.log

로그에서 'temporary password' 를 찾아서 임시 비밀번호를 입력하면 된다.

2-2) 비밀번호 변경

ALTER USER 'root'@'localhost' IDENTIFIED BY 'MYPASSWORD';~~텍스트~~

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

이런 오류가 나면 비밀번호를 더 복잡하게 만들면 된다.

728x90
반응형