所以我刚安装了linux并开始搞乱apache,php,mysql,我在创建数据库时遇到此错误。我无法找到答案,所以我希望你们能帮助我。
max@MaxLNX:~$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 67
Server version: 5.5.47-0ubuntu0.14.04.1 (Ubuntu)
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> create database firstdb;
ERROR 1006 (HY000): Can't create database 'firstdb' (errno: 13)
答案 0 :(得分:0)
错误意味着您的mysql服务器没有足够的空间。 检查文件系统大小,并删除不需要的软件或文件。
答案 1 :(得分:0)
MySQL数据目录可能存在权限问题。您可以尝试按如下方式设置权限(调整数据目录的路径)
chown -R mysql:mysql / usr / local / mysql / data
回复是否有效
答案 2 :(得分:0)
尝试使用“sudo”。在 Linux 系统上,“sudo”的意思是“超级用户”,应该可以帮助您获得创建数据库的权限。在你的终端试试这个:
sudo mysql -u root -p