也许我只是错过了一些非常明显的东西,但我无法以某种方式连接到我的本地计算机上安装的mysql数据库。当我打开mysql.exe时,它说我已经连接到MariaDB和一个ID。但是当我尝试访问某个数据库时,我得到:“ERROR 1044(42000):拒绝用户''@ localhost'访问数据库......”
当我检查状态时,它说我已经以具有我的电脑名称@localhost的用户身份连接。
希望有人可以提供帮助。 :)
答案 0 :(得分:1)
我猜xampp会以某种方式阻止使用mysql.exe进行登录或其他操作。当我使用xampp控制面板中的shell时,一切正常。但我对此并不确定。
答案 1 :(得分:0)
MariaDB是MySQL的“替代品”,因此名称混乱。 (这不是一个问题,只是一个混乱。)(并且MySQL和MariaDB之间存在细微的差别,但你远不及它们。)
安装XAMPP时,为MariaDB建立了名为“root”的用户。也许它要求输入密码?如果您尚未GRANTed
任何其他“用户”访问数据库,则“root”是要使用的“用户”。
命令行工具mysql
也应该可用。但它也需要有效的用户和密码:
mysql -u root -- if no password
mysql -u root -p -- it will then prompt for the password
如果您要从其他计算机进行连接,则需要更多参数和需要通过GRANTed
部分@...
从该计算机进行GRANT
访问声明。
答案 2 :(得分:0)
直接连接到名为 iluminati 的 db 的示例:
tenasimi@SANTRALSUM-05 c:\xampp
# mysql -u root -p iluminati
Enter password: *
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 806
Server version: 5.6.24 MySQL Community Server (GPL)
Copyright (c) 2000, 2015, 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> status;
--------------
mysql Ver 14.14 Distrib 5.6.24, for Win32 (x86)
Connection id: 806
Current database: iluminati
Current user: root@localhost
SSL: Not in use
Using delimiter: ;
Server version: 5.6.24 MySQL Community Server (GPL)
Protocol version: 10
Connection: localhost via TCP/IP
Server characterset: latin1
Db characterset: latin1
Client characterset: cp866
Conn. characterset: cp866
TCP port: 3306
Uptime: 1 day 2 hours 4 min 58 sec
Threads: 1 Questions: 2476 Slow queries: 0 Opens: 78 Flush tables: 1 Open
ables: 71 Queries per second avg: 0.026
--------------
mysql> show tables;
+---------------------+
| Tables_in_iluminati |
+---------------------+
| dutypersons |
| persons |
| products |
+---------------------+
3 rows in set (0.00 sec)
mysql> exit;
Bye