“Mysql故障”的版本间的差异
跳到导航
跳到搜索
docker>Evan |
|||
(未显示同一用户的4个中间版本) | |||
第1行: | 第1行: | ||
+ | <pre> | ||
+ | |||
+ | log_bin_trust_function_creators错误解决 | ||
+ | |||
+ | |||
+ | |||
+ | 当有mysql本地或远程建立function或procedure时报上面的错误 | ||
+ | |||
+ | 或者如果开启了二进制日志,但是用户没有supper 权限;那么他在创建trigger 时会提示设置log_bin_trust_function_creators=1 | ||
+ | |||
+ | 经试验是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 | ||
+ | |||
+ | |||
+ | </pre> | ||
+ | ==mysql删除数据库提示Error dropping database (can't rmdir...== | ||
+ | 1.执行ps aux | grep mysql,查看mysql的data目录,比如结果是--datadir=/var/lib/mysql。 | ||
+ | |||
+ | 2.进入data目录,删除以该数据库为名字的文件夹。 | ||
+ | |||
+ | cd /var/lib/mysql | ||
+ | |||
+ | rm xxx -Rfv | ||
+ | |||
+ | 3.重新进入mysql,执行drop xxx | ||
+ | |||
+ | =see also= | ||
+ | |||
+ | |||
+ | [https://www.cnblogs.com/flying607/p/5576584.html log_bin_trust_function_creators变量解释] | ||
第6行: | 第46行: | ||
[https://blog.csdn.net/mydriverc2/article/details/38304355 谨慎设置binlog_format=MIXED] | [https://blog.csdn.net/mydriverc2/article/details/38304355 谨慎设置binlog_format=MIXED] | ||
+ | |||
+ | |||
+ | |||
[[category:mysql]] | [[category:mysql]] |
2020年7月8日 (三) 11:50的最新版本
log_bin_trust_function_creators错误解决 当有mysql本地或远程建立function或procedure时报上面的错误 或者如果开启了二进制日志,但是用户没有supper 权限;那么他在创建trigger 时会提示设置log_bin_trust_function_creators=1 经试验是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
mysql删除数据库提示Error dropping database (can't rmdir...
1.执行ps aux | grep mysql,查看mysql的data目录,比如结果是--datadir=/var/lib/mysql。
2.进入data目录,删除以该数据库为名字的文件夹。
cd /var/lib/mysql
rm xxx -Rfv
3.重新进入mysql,执行drop xxx