1. 程式人生 > >The user specified as a definer ('root'@'%') does not exist

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

頁面點選儲存按鈕後,報錯:The user specified as a definer ('root'@'%') does not exist 

在資料庫中

許可權問題,授權 給 root  所有sql 許可權

mysql> grant all privileges on *.* to root@"%" identified by ".";
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;

Query OK, 0 row