From d65a443e02579361ae995c5c00b0fc5be5bbbac6 Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Wed, 22 Jul 2015 15:14:43 +0200 Subject: [PATCH] Documentation Update Documentation Update --- .../Tutorials/Replication-Proxy-Binlog-Router-Tutorial.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Documentation/Tutorials/Replication-Proxy-Binlog-Router-Tutorial.md b/Documentation/Tutorials/Replication-Proxy-Binlog-Router-Tutorial.md index 6795e92da..61e8a3359 100644 --- a/Documentation/Tutorials/Replication-Proxy-Binlog-Router-Tutorial.md +++ b/Documentation/Tutorials/Replication-Proxy-Binlog-Router-Tutorial.md @@ -225,11 +225,13 @@ Binlog Router currently does not work for MySQL 5.5 due to missing @@global.binl Examples of CHANGE MASTER TO command issued on a slave server that wants to gets replication events from MaxScale binlog router: - CHANGE MASTER TO MASTER_HOST=‘$maxscale_IP’, MASTER_PORT=5308, MASTER_USER='repl', MASTER_PASSWORD=‘somepasswd’, MASTER_LOG_FILE=‘mysql-bin.000001' + CHANGE MASTER TO MASTER_HOST=‘$maxscale_IP’, MASTER_PORT=5308, MASTER_USER='repl', MASTER_PASSWORD=‘somepasswd’, + MASTER_LOG_FILE=‘mysql-bin.000001' - CHANGE MASTER TO MASTER_HOST=‘$maxscale_IP’, MASTER_PORT=5308, MASTER_USER='repl', MASTER_PASSWORD=‘somepasswd’, MASTER_LOG_FILE=‘mysql-bin.000159', MASTER_LOG_POS=245 + CHANGE MASTER TO MASTER_HOST=‘$maxscale_IP’, MASTER_PORT=5308, MASTER_USER='repl', MASTER_PASSWORD=‘somepasswd’, + MASTER_LOG_FILE=‘mysql-bin.000159', MASTER_LOG_POS=245 -The latter even specifies a MASTER_LOG_POS for the selected MASTER_LOG_FILE +The latter example specifies a MASTER_LOG_POS for the selected MASTER_LOG_FILE Note: