mybatis進行資料庫建表 CREATE command denied to user 'root'@'127.0.0.1' for table 問題

獵手家園發表於2022-09-15

產生原因:

  資料庫沒有給使用者相應的許可權,查詢mysql的user表,就會發現建表許可權為:N。

解決辦法:

  給相就的帳號賦予許可權。

執行語句:

update user set Select_priv='Y',Insert_priv='Y',Update_priv='Y',Delete_priv='Y',Create_priv='Y',Drop_priv='Y',Reload_priv='Y',Shutdown_priv='Y',Process_priv='Y',File_priv='Y',Grant_priv='Y',References_priv='Y',Index_priv='Y',Alter_priv='Y',Show_db_priv='Y',Super_priv='Y',Create_tmp_table_priv='Y',Lock_tables_priv='Y',Execute_priv='Y',Repl_slave_priv='Y',Repl_client_priv='Y',Create_view_priv='Y',Show_view_priv='Y',Create_routine_priv='Y',Alter_routine_priv='Y',Create_user_priv='Y',Event_priv='Y',Trigger_priv='Y',Create_tablespace_priv='Y' where host='192.168.0.40';

重新整理許可權:

FLUSH PRIVILEGES;

 

相關文章