반응형
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
반응형
'ERROR' 카테고리의 다른 글
[ERROR] (Not Solved) Airflow HttpSensor 400 Client Error: Bad Request for url (0) | 2023.01.08 |
---|---|
[MongoDB] 설치 후 실행 안됨(status=14 , status=100) (0) | 2022.11.26 |
[ERROR] ImportError: cannot import name 'AWSAthenaOperator' (0) | 2022.11.20 |
[Solved][RHEL/CentOS] [Errno 12] Cannot allocate memory (0) | 2022.06.27 |
[Solved][RHEL/CentOS] Git is not installed, can't continue. (0) | 2022.06.27 |