MySQL Audit日誌審計

1、簡介mysql

數據庫審計可以實時記錄網絡上的數據庫活動,對數據庫操做進行細粒度審計的合規性管理,對數據庫受到的風險行爲進行告警,對攻擊行爲進行阻斷,它經過對用戶訪問數據庫行爲的記錄、分析和彙報,用來幫助用戶過後生成合規報告、事故追根溯源,同時增強內外部數據庫網絡行爲記錄,提升數據資產安全。linux

MySQL企業版有此功能,屬於收費組件,此測試社會版使用第三方開源插件。git

2、下載地址github

https://bintray.com/mcafee/mysql-audit-plugin/release/1.1.4-725#filessql

或https://github.com/mcafee/mysql-audit數據庫

[root@zstedu soft]# unzip audit-plugin-mysql-5.7-1.1.4-725-linux-x86_64.zipjson

 cp libaudit_plugin.so /usr/local/mysql/lib/plugin/安全

chown -R mysql.mysql libaudit_plugin.so網絡

chmod -R 755 libaudit_plugin.so 測試

3、命令行安裝操做及報錯解決

mysql> INSTALL PLUGIN AUDIT SONAME 'libaudit_plugin.so';                       

ERROR 29 (HY000): File 'mysqld' not found (Errcode: 2 - No such file or directory)

mysql> INSTALL PLUGIN AUDIT SONAME '/opt/mysql/mysql-5.7.22-linux-glibc2.12-x86_64/lib/plugin/libaudit_plugin.so';
ERROR 1124 (HY000): No paths allowed for shared library

解決方案:

參考https://blog.csdn.net/qq_35267530/article/details/76242215

https://blog.csdn.net/qq_33020901/article/details/78827375

查看插件功能是否開啓

#show variables like ""%audit%;

開啓插件功能:

set global audit_json_file=1;

在MySQL數據目錄下,會多出一個mysql-audit.json審計日誌。

查看mysql-audit.json文件,能夠找到操做SQL語句的用戶名和IP地址,起到了對操做數據庫很好的監控效果。

相關文章
相關標籤/搜索