The user specified as a definer ('test'@'%') does not exist

意思是 test 這個用戶的權限不足,最簡單的解決辦法就是賦予 test 用戶所有權限:

grant all privileges on *.* to test@"%" identified by ".";
刷新權限表(不然要數據庫重啓才生效):

flush privileges;


End .


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章