Home > Database > Mysql Tutorial > body text

【实战】mariadb审计

WBOY
Release: 2016-06-07 16:12:06
Original
1194 people have browsed it

---新建保存审计日志的目录mkdir /usr/local/mysql/mysql_logs/auditlogchown mysql:mysql /usr/local/mysql/mysql_logs/auditlog/--2.安装审计插件SHOW GLOBAL VARIABLES LIKE plugin_dir;INSTALL PLUGIN server_audit SONAME server_audit.so;SELECT * fro

---新建保存审计日志的目录
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;



Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!