首页 > 开发 > MySQL > 正文

MySQL: ERROR 1044 (42000) Access denied for user ''@'localhost' to database 'aliendatabase'

2017-09-08 09:11:36  来源:网友分享

新手轻喷。小弟在看head first 的 PHP & MySQL,第二章用命令行创建数据库:

tony@Tony-Laptop-Ubuntu$ ~ mysqlWelcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 41Server version: 5.5.29-0ubuntu0.12.04.1 (Ubuntu)Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> CREATE DATABASE aliendatabase;ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'aliendatabase'

求大神解释加解决方案~小弟拜谢!

解决方案

没权限,用root登录:

mysql -uroot

如果root有密码:

mysql -uroot -p