我添加使用phpMyAdmin一個新用戶,我得到一個錯誤,我用SQL查詢:無法登錄到mysql服務器。 (錯誤1045)
create database foo_db;
create user foo_user identified by 'foo_password';
grant all on foo_db.* to 'foo_user'@'%';
flush privileges;
但它這麼想的工作了。
誤差內留言是
ERROR 1045 (28000): Access denied for user 'folderfile'@'localhost' (using password: YES) (mysql)
#1045 Cannot log in to the MySQL server (phpmyadmin)
我解決不了這個問題,請大家幫忙。
您創建的用戶'foo_user',但試圖登錄爲'folderfile' –