1. 程式人生 > >開啟mysql-binlog日誌操作步驟

開啟mysql-binlog日誌操作步驟

.cn create 添加 log use 路徑 orm 賬戶 span


步驟1:找到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日誌操作步驟