mysql 出錯提示

2021-09-01 10:06:38 字數 396 閱讀 8202

1.error 1044 (42000): access denied for user 'tracy'@'localhost' to database 'innodbtest'

tracy這個使用者,沒有許可權建立使用者

使用root使用者登入,執行如下命令

mysql >create database innodb_test;

mysql>grant all on innodb_test to tracy@localhost;

退出使用tracy使用者登入,就可以使用innodb這張表了。

或者給tracy這個使用者賦予所有資料庫的操作許可權:

grant all on *.* to tracy@localhost;

這樣在tracy使用者下就可以操作建立資料庫了。

常見DOS出錯提示

1 dos啟動時的出錯資訊 bad partition table 錯誤的分割槽表 cannot find system file 未發現系統檔案 cmos battary state low cmos 電池電能不足 unrecognized command in config.sys config...

連線mysql出錯

eg error host is not allowed to connect to this mysql server 解決方法 grant all privileges on to root identified by rootpassd with grant option flush priv...

MySQL出錯總結

錯誤1 wizard安裝最後一頁,出現cannot create windows service for mysql.error 0 錯誤 解決方法 開啟命令列 輸入 sc delete mysql 命令即 c sc delete mysql sc deleteservice success 重起電...