1.直接先用mysql -u root -p命令进行登录
2.使用show variables like ‘log_%’;验证是否开启了binlog
3.查找mysql配置文件所在的位置my.cnf
find / -name “my.cnf”
4.在[mysqld]下面增加
log-bin=mysql-bin
5.退出保存并重启mysql服务
systemctl restart mysql(centos7)
或者
service mysqld restart(centos6)
备注:lsb_release -a,查看查看CentOS版本方法
6.重新登录再次使用show variables like ‘log_%’;命令进行查看