ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: YES)

当我们输入如下命令提示错误:

假设123是数据库密码!
PS C:\Program Files\MySQL\MySQL Server 5.7\bin> mysql -h localhost -u root -p 123
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: YES)

原因是-p与123之间不应该有空格,更正后如下:

PS C:\Program Files\MySQL\MySQL Server 5.7\bin> mysql -h localhost -u root -p123
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.7.17-log MySQL Community Server (GPL)

Copyright (c) 2000, 2016, 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>

猜你喜欢

转载自blog.csdn.net/GZHarryAnonymous/article/details/84844355
今日推荐