MySQL数据恢复助手,mysqlbinlog工具使用

下面我们来演示如何使用mysql内置工具mysqlbinlog查阅binlog日志,首先要切换至mysql安装目录:

cd /opt/mysql-5.5.62

基本语法

bin/mysqlbinlog data/mysql-bin.000001 |less

指定日期

bin/mysqlbinlog data/mysql_bin.000001 --start-datetime='2019/08/02 00:00:00' --stop-datetime='2019/08/03 00:00:00'

指定数据库

bin/mysqlbinlog -d test data/mysql_bin.000001

注意

默认不开启bin-log;需要单独配置,打开并编辑以下文件/etc/my.cnf

[mysqld]
# Uncomment the following if you want to log updates
log-bin=mysql-bin

重启即可。

你可能感兴趣的:(#,MySQL,DB)