From 1360335788a98c37b0b66735583eb05a6f31b537 Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Wed, 9 Dec 2015 11:33:39 +0100 Subject: [PATCH] Added Upgrade BinlogRouter Added Upgrade BinlogRouter --- .../Upgrading-BinlogRouter-To-Maxscale-1.3.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Upgrading/Upgrading-BinlogRouter-To-Maxscale-1.3.md diff --git a/Upgrading/Upgrading-BinlogRouter-To-Maxscale-1.3.md b/Upgrading/Upgrading-BinlogRouter-To-Maxscale-1.3.md new file mode 100644 index 000000000..4c088d500 --- /dev/null +++ b/Upgrading/Upgrading-BinlogRouter-To-Maxscale-1.3.md @@ -0,0 +1,22 @@ +# Upgrading Binlog Router to MaxScale to 1.3 + +This document describes upgrading the Binlog Router module to MaxScale version 1.3. The major changes can be found in the `Changelog.txt` file in the installation directory and the official release notes in the `ReleaseNotes.txt` file. + +## What's new + +The master server details are now provided by a **master.ini** file located in binlog directory and itcould be changed via CHANGE MASTER TO command issued via MySQL connection to MaxScale. + +This file, properly filled, it's now mandatory and without that the binlog router can't connect to the master database. + +Before starting binlog router after MaxScale 1.3 upgrade please add relevant informations in master.ini, example: + +``` +[binlog_configuration] +master_host=127.0.0.1 +master_port=3308 +master_user=repl +master_password=somepass +filestem=repl-bin +``` + +Additionally the option ```servers=masterdb``` in the service definition is no longer required.