헤르메스 LIFE

[MySQL] ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) 본문

Database

[MySQL] ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)

헤르메스의날개 2012. 1. 27. 11:02
728x90
처음 MySQL 5.5 버젼을 설치하고 나서 계정 및 DB를 추가하려고 prompt에 mysql 이라고 쳤더니 오류가 났음.
 
C:\MySQL Server 5.5\bin>mysql
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)


이렇게 하면 된다. ( 사용자를 지정해야 한다. )

C:\MySQL Server 5.5\bin>mysql -u root -p
Enter password: *******          <- 설치 시 관리자 계정 패스워드를 넣으면 된다.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 23
Server version: 5.5.20 MySQL Community Server (GPL)

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>
728x90