mysql报错:You do not have the SUPER privilege and binary logging is enabled
时间:2020-02-23 09:42:53
收藏:0
阅读:629
MySQL出现 You do not have the SUPER privilege and binary logging is enabled报错
解决方案:
1、用root用户登录:mysql -u root -p
2、设置参数log_bin_trust_function_creators为1
set global log_bin_trust_function_creators = 1;
原文:https://www.cnblogs.com/pxblog/p/12348252.html
评论(0)