Add Upgrading document
This commit is contained in:
parent
6c1486ed06
commit
c7f07ec6b1
39
Documentation/Upgrading/Upgrading-To-MaxScale-2.3.md
Normal file
39
Documentation/Upgrading/Upgrading-To-MaxScale-2.3.md
Normal file
@ -0,0 +1,39 @@
|
||||
# Upgrading MariaDB MaxScale from 2.2 to 2.3
|
||||
|
||||
This document describes possible issues when upgrading MariaDB
|
||||
MaxScale from version 2.2 to 2.3.
|
||||
|
||||
For more information about MariaDB MaxScale 2.3, please refer
|
||||
to the [ChangeLog](../Changelog.md).
|
||||
|
||||
Before starting the upgrade, we recommend you back up your current
|
||||
configuration file.
|
||||
|
||||
### `passwd` is no longer accepted
|
||||
|
||||
In the configuration file, passwords for monitors and services must be
|
||||
specified using `password`; the support for the earlier deprecated
|
||||
`passwd` has been removed. That is, the following
|
||||
```
|
||||
[The-Service]
|
||||
type=service
|
||||
passwd=some-service-password
|
||||
...
|
||||
|
||||
[The-Monitor]
|
||||
type=service
|
||||
passwd=some-monitor-password
|
||||
...
|
||||
```
|
||||
must be changed to
|
||||
```
|
||||
[The-Service]
|
||||
type=service
|
||||
password=some-service-password
|
||||
...
|
||||
|
||||
[The-Monitor]
|
||||
type=service
|
||||
password=some-monitor-password
|
||||
...
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user