MySQL 접근 거부 오류

 

ERROR 1045 (28000): Access denied for user
MySQL 접근 거부 오류

로컬 예시[편집]

리눅스 셸에서 mysql을 실행하니 Access denied(접근 거부)가 나온다.

[root@localhost ~]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

-p 옵션을 붙여 패스워드를 입력하자.

[root@localhost ~]# mysql -pP@ssw0rd
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 600388
Server version: 5.0.77 Source distribution
 
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
 
mysql>

원격접속 예시[편집]

패스워드 안맞음
[root@zetawiki ~]# mysql -h135.79.246.80 -utestuser -phello
ERROR 1045 (28000): Access denied for user 'testuser'@'135.79.246.80' (using password: YES)
패스워드 맞음
[root@zetawiki ~]# mysql -h135.79.246.80 -utestuser -pP@ssw0rd
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 272691
Server version: 5.0.77-log Source distribution
 
Copyright (c) 2000, 2011, 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>

패스워드를 알 수 없을 때[편집]

패스워드를 바꾸어 입력해도 아래와 같이 계속 거부된다면, MySQL root 패스워드 분실 문서를 참고하시라.

[root@localhost ~]# mysql -pP@ssw0rd2
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)


출처 : http://zetawiki.com/wiki/MySQL_%EC%A0%91%EA%B7%BC_%EA%B1%B0%EB%B6%80_%EC%98%A4%EB%A5%98#.ED.8C.A8.EC.8A.A4.EC.9B.8C.EB.93.9C.EB.A5.BC_.EC.95.8C_.EC.88.98_.EC.97.86.EC.9D.84_.EB.95.8C

'linux > APM' 카테고리의 다른 글

아파치가 실행이안될때  (0) 2015.11.19
AH00558 에러 조치.  (0) 2015.11.19
[linux]apach 설치 도중 에러!  (0) 2015.11.19
Mysql cmake 중 오류(수정요함)  (0) 2015.11.19
Mysql 소스설치 참고용 2!  (0) 2015.11.19

+ Recent posts