The user specified as a definer ('test'@'%') does not exist(用戶指定爲definer('test'@'%')不存在。)

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

1,grant all privileges on *.* to test@"%" identified by ".";


刷新權限表(不然要數據庫重啓才生效):

2,flush privileges;


3,end;

發佈了28 篇原創文章 · 獲贊 7 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章