使用正确的语法时MYSQL收到错误,并且还以受限制的匿名用户身份登录

时间:2013-07-31 04:43:43

标签: php mysql database

我在互联网上搜索并询问了几个人在工作如何解决这个问题,但我准备放弃......我在笔记本电脑上安装了mySQL,但我无法以用户身份登录。

Raymunds-MacBook-Pro:~ raymundsinlao$ /usr/local/mysql/bin/mysql 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2149
Server version: 5.6.13 MySQL Community Server (GPL)

Copyright (c) 2000, 2013, 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> -u root -p;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-u root -p' at line 1
mysql> 

当我尝试登录时,它告诉我语法错误。我已经尝试了很多不同的方法,但它不起作用。

我的另一个问题是我是匿名用户,因此我无法访问information_schema以外的任何数据库并进行测试。

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| test               |
+--------------------+
2 rows in set (0.00 sec)
mysql> use mysql;
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'
mysql>

我已经尝试过几十种不同的东西,并且在过去的两天里花费了8个多小时。请帮帮我!

1 个答案:

答案 0 :(得分:1)

您正在分离/usr/local/mysql/bin/mysql-u root -p,但这两者都属于命令行,因此它应如下所示:

/usr/local/mysql/bin/mysql -u root -p

您只能使用/usr/local/mysql/bin/mysql进入这一事实意味着您已经以root登录,只是该用户没有密码,您肯定会想要在该帐户上设置密码(登录后):

use mysql;
update user set password=PASSWORD('NEWPASSWORD') where User='root';
相关问题