How do you implement audit logging in Percona Server for MySQL?
Steps to Implement Audit Logging
1. Install the Audit Log Plugin
INSTALL PLUGIN audit_log SONAME 'audit_log.so';
2. Configure the Plugin
Add the following configuration to your my.cnf file:
[mysqld]
audit_log_file = /var/log/mysql/audit.log
audit_lo...
shiviyer.hashnode.dev1 min read