Crates.io | mysql-audit-extend |
lib.rs | mysql-audit-extend |
version | 0.2.7 |
source | src |
created_at | 2022-08-10 12:21:44.449084 |
updated_at | 2022-08-14 14:03:49.776152 |
description | An extension tool of mysql-audit, which provides functions such as log rotation and log cleaning. |
homepage | |
repository | https://gitee.com/seeker_rs/mysql-audit-extend |
max_upload_size | |
id | 642600 |
size | 28,071 |
Notice: This is a binary application.
The extension of mysql-audit, the mysql audit plugin for mcafee, enhances the plugin function.
cargo install mysql-audit-extend
or
wget https://gitee.com/seeker_rs/mysql-audit-extend/releases/download/release-0.2.7/mysql-audit-extend
chmod 775 mysql-audit-extend
# View help
mysql-audit-extend -h
OUTPUT:
USAGE:
mysql-audit-extend [OPTIONS]
OPTIONS:
-f, --max-file <MAX_FILE> Maximum number of files to keep [default: 10]
-h, --help Print help information
-m, --max-size <MAX_SIZE> Maximum file size, Unit: MB [default: 10]
-p, --path <PATH> Absolute path to log file [default:
/var/lib/mysql/mysql-audit.json]
-V, --version Print version information
# Run with default configuration
mysql-audit-extend
# Run with custom configuration
mysql-audit-extend -p /var/lib/mysql/mysql-audit.json -m 100 -f 30
# execution log
tail -f /tmp/seeker/mysql-audit-extend/log.log
# error log
tail -f /tmp/seeker/mysql-audit-extend/log.error
Currently only supports Linux operating system.