[MySQL] 1449 ERROR - The user specified as a definer



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


root가 가지고 있는 권한 문제 이므로


해당 데이터베이스로 접속하여 권한을 주면된다.

ex)

use mysql;
grant all on *.* to 'root'@'%' identified by 'password' with grant option;


'DataBase > MySQL' 카테고리의 다른 글

[mysql/mariadb] utf8mb4 언어셋 및 표현범위  (0) 2017.03.13
[MYSQL] duplicate INSERT  (0) 2016.03.25
[MySQL] TIMEZONE 설정  (0) 2016.03.07
[CentOS] mysql, maria DB sql 파일 import  (0) 2016.02.29
CentOS 7 mariaDB  (0) 2016.02.29

+ Recent posts