欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

log_bin_trust_function_creators错误解决_MySQL

程序员文章站 2022-05-20 17:06:50
...
bitsCN.com

log_bin_trust_function_creators错误解决

当有mysql本地或远程建立function或procedure时报上面的错误

经试验是log_bin_trust_function_creators值为off导致

设置:

set global log_bin_trust_function_creators=1; 

但重启后失效

永久解决方案

windows下my.ini[mysqld]加上log_bin_trust_function_creators=1 linux下/etc/my.cnf下my.ini[mysqld]加上log_bin_trust_function_creators=1 

保存 ,重启服务器。

bitsCN.com