Move server creation into a mini-tutorial
Combined the redundant documentation into a single document.
This commit is contained in:
27
Documentation/Tutorials/Configuring-Servers.md
Normal file
27
Documentation/Tutorials/Configuring-Servers.md
Normal file
@ -0,0 +1,27 @@
|
||||
# Configuring Servers
|
||||
|
||||
The first step is to define the servers that make up the cluster. These servers
|
||||
will be used by the services and are monitored by the monitor.
|
||||
|
||||
```
|
||||
[dbserv1]
|
||||
type=server
|
||||
address=192.168.2.1
|
||||
port=3306
|
||||
protocol=MariaDBBackend
|
||||
|
||||
[dbserv2]
|
||||
type=server
|
||||
address=192.168.2.2
|
||||
port=3306
|
||||
protocol=MariaDBBackend
|
||||
|
||||
[dbserv3]
|
||||
type=server
|
||||
address=192.168.2.3
|
||||
port=3306
|
||||
protocol=MariaDBBackend
|
||||
```
|
||||
|
||||
The `address` and `port` parameters tell where the server is located. The
|
||||
`protocol` should always be set to `MariaDBBackend`.
|
||||
Reference in New Issue
Block a user