我有一个非常活跃的服务器,无法重新启动它。很久以前,我已经激活了审核日志,但是由于空间问题,我需要将其关闭。以下是我的变量;
audit_log_buffer_size | 1048576 | audit_log_connection_policy | ALL | audit_log_current_session | ON | audit_log_exclude_accounts | | audit_log_file | audit.log | audit_log_flush | OFF | audit_log_format | OLD | audit_log_include_accounts | | audit_log_policy | ALL | audit_log_rotate_on_size | 0 | audit_log_statement_policy | ALL | audit_log_strategy | ASYNCHRONOUS |
And here is my.cnf
plugin-load=audit_log.so
.
.
.
# Audit Log -
#--------------------------
#audit-log=FORCE_PLUS_PERMANENT
#audit_log_exclude_accounts=.....
#audit_log_file= /var/log/mysql/mysql_audit_db1.log
.
.
.
解决方案:
在运行
UNINSTALL PLUGIN audit_log;
之后,它停止为我记录审核日志文件。验证是否可以使用SHOW PLUGINS;
mysql> UNINSTALL PLUGIN audit_log;
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> show warnings;
Warning | 1620 | Plugin is busy and will be uninstalled on shutdown enter code here
最佳答案
当FORCE_PLUS_PERMANENT looks注释掉时,您可以使用UNINSTALL PLUGIN命令,如下所示:
https://dev.mysql.com/doc/refman/5.5/en/server-plugin-loading.html#server-plugin-uninstalling
如果FORCE_PLUS_PERMANENT处于活动状态,则您将失去运气,因为这是为了保护审核日志不被动态禁用。
关于mysql - 服务器运行时如何关闭mysql审核日志?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32234343/