반응형
$> /usr/local/mysql/bin/mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
위 에러는 비밀번호를 입력하지 않았을 경우 나타는 에러이다.
-p 옵션을 사용하여 옳바른 비밀번호를 입력하면 된다.
$> /usr/local/mysql/bin/mysql -uroot -p잘못된비밀번호
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
위 에러는 -p 옵션을 사용하여 비밀번호를 입력했지만, 옳바르지 않은 비밀번호를 입력했을 경우 나타는 에러이다.
옳바른 비밀번호를 입력 시 다음과 같은 화면이 출력된다.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.7.20 MySQL Community Server (GPL)
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
728x90
'Web' 카테고리의 다른 글
Error: connect ETIMEDOUT 에러 (0) | 2022.06.02 |
---|---|
동기와 비동기 처리 방식 (Asynchronous processing model) (5) | 2022.05.23 |
[ MySQL ] Sequelize 조회수 증가 / 감소 기능 구현하기 (0) | 2022.05.19 |
[ Docker ] 도커란 무엇일까? (1) | 2022.05.17 |
[Ubuntu] 명령어 정리 - 파일 폴더 찾기 / 생성 , 숨김파일 보기 (0) | 2022.05.06 |