当前位置:Gxlcms > 数据库问题 > 开启mysql-binlog日志操作步骤

开启mysql-binlog日志操作步骤

时间:2021-07-01 10:21:17 帮助过:4人阅读

:找到mysql主库的配置文件(注意:不能为从库),lunix系统路径一般为/etc/my.cnf

步骤2:修改配置文件(可以提前备份一下)以开启mysql-binlog功能。添加以下3行:

log-bin=mysql-bin     #先添加这一行
binlog-format=ROW     #再选择row模式,切记模式不能错
server_id=1     #配置server_id=1

步骤3:创建新账户
CREATE USER canal IDENTIFIED BY ‘canalserviceforyunnan#2018‘;  
GRANT ALL PRIVILEGES ON *.* TO ‘canal‘@‘%‘ ;

FLUSH PRIVILEGES;

步骤4:重启mysql数据库

开启mysql-binlog日志操作步骤

标签:unix   etc   color   size   文件   添加   nal   row   步骤   

人气教程排行