2016-03-18 35 views
0

所以我剛剛安裝了linux並開始搞亂apache,php,mysql,並在創建數據庫時出現此錯誤。我無法找到答案,所以我希望你們能幫助我。MySQL第一次創建數據庫錯誤

[email protected]:~$ 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

可能你沒有權限創建數據庫文件最終看到這個http://stackoverflow.com/questions/18719748/error-1006-hy000-cant-create-database-errno-13-mysql-5-6- 12 – scaisEdge

回答

0

錯誤表示您的mysql服務器沒有足夠的空間。 檢查文件系統大小,並刪除不需要的軟件或文件。

+0

我剛安裝linux我有60GB的可用空間 –

0

MySQL數據目錄可能存在權限問題。你可以嘗試設置的權限如下(調整路徑到您的數據目錄)

喬敦 - R的MySQL的:MySQL的在/ usr /本地/ mysql /下數據

迴應,如果它的工作

+0

它應該是一些privilage問題 – padippist