码迷,mamicode.com
首页 > 数据库 > 详细

实战-mariadb审计

时间:2014-12-08 15:34:28      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   for   on   文件   2014   log   ad   

---新建保存审计日志的目录
mkdir  /usr/local/mysql/mysql_logs/auditlog

chown mysql:mysql /usr/local/mysql/mysql_logs/auditlog/


--2.安装审计插件
SHOW GLOBAL VARIABLES LIKE 'plugin_dir';

INSTALL PLUGIN server_audit SONAME 'server_audit.so';

SELECT * from information_schema.plugins where plugin_name='server_audit';


SHOW GLOBAL VARIABLES LIKE 'server_audit%';

------3.修改mysql配置文件

vi /etc/my.cnf

server_audit	=FORCE_PLUS_PERMANENT
server_audit_events	='CONNECT,QUERY,TABLE'
server_audit_logging	=ON
server_audit_incl_users	=wind
server_audit_file_rotate_size	= 10G
server_audit_file_path	= /usr/local/mysql/mysql_logs/auditlog/server_audit.log


-----4.新建测试用户

GRANT ALL PRIVILEGES ON wind.t1 TO 'wind'@'%' IDENTIFIED BY 'wind' WITH GRANT OPTION;

flush privileges;




实战-mariadb审计

标签:blog   io   ar   for   on   文件   2014   log   ad   

原文地址:http://blog.csdn.net/yangzhawen/article/details/41804249

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!