diff --git a/Documentation/Tutorials/Galera-Cluster-Connection-Routing-Tutorial.md b/Documentation/Tutorials/Galera-Cluster-Connection-Routing-Tutorial.md index 67eb8a17f..d2fac2c11 100644 --- a/Documentation/Tutorials/Galera-Cluster-Connection-Routing-Tutorial.md +++ b/Documentation/Tutorials/Galera-Cluster-Connection-Routing-Tutorial.md @@ -120,9 +120,8 @@ service=Galera Service ``` A listener must also define the protocol module it will use for the incoming -network protocol, currently this should be the MariaDBClient protocol for all -database listeners. The listener may then supply a network port to listen on -and/or a socket within the file system. +network protocol, currently this must be the `MariaDBClient` protocol for all +database listeners. The listener must also supply the network port to listen on. ``` [Galera Listener] @@ -130,7 +129,6 @@ type=listener service=Galera Service protocol=MariaDBClient port=4306 -socket=/tmp/DB.Cluster ``` An address parameter may be given if the listener is required to bind to a particular diff --git a/Documentation/Tutorials/Galera-Cluster-Read-Write-Splitting-Tutorial.md b/Documentation/Tutorials/Galera-Cluster-Read-Write-Splitting-Tutorial.md index 34f3006db..27329abb9 100644 --- a/Documentation/Tutorials/Galera-Cluster-Read-Write-Splitting-Tutorial.md +++ b/Documentation/Tutorials/Galera-Cluster-Read-Write-Splitting-Tutorial.md @@ -71,7 +71,9 @@ type=listener service=Splitter Service ``` -A listener must also define the protocol module it will use for the incoming network protocol, currently this should be the `MariaDBClient` protocol for all database listeners. The listener may then supply a network port to listen on and/or a socket within the file system. +A listener must also define the protocol module it will use for the incoming +network protocol, currently this must be the `MariaDBClient` protocol for all +database listeners. The listener must also supply the network port to listen on. ``` [Splitter Listener] @@ -79,7 +81,6 @@ type=listener service=Splitter Service protocol=MariaDBClient port=3306 -socket=/tmp/ClusterMaster ``` An address parameter may be given if the listener is required to bind to a particular network address when using hosts with multiple network addresses. The default behavior is to listen on all network interfaces. diff --git a/Documentation/Tutorials/MariaDB-Replication-Connection-Routing-Tutorial.md b/Documentation/Tutorials/MariaDB-Replication-Connection-Routing-Tutorial.md index a25f5f8a2..002404d50 100644 --- a/Documentation/Tutorials/MariaDB-Replication-Connection-Routing-Tutorial.md +++ b/Documentation/Tutorials/MariaDB-Replication-Connection-Routing-Tutorial.md @@ -106,7 +106,9 @@ type=listener service=Read-Service ``` -A listener must also define the protocol module it will use for the incoming network protocol, currently this should be the MariaDBClient protocol for all database listeners. The listener may then supply a network port to listen on and/or a socket within the file system. +A listener must also define the protocol module it will use for the incoming +network protocol, currently this must be the `MariaDBClient` protocol for all +database listeners. The listener must also supply the network port to listen on. ``` [Write-Listener] @@ -114,7 +116,6 @@ type=listener service=Write-Service protocol=MariaDBClient port=4306 -socket=/tmp/ClusterMaster [Read-Listener] type=listener diff --git a/Documentation/Tutorials/MariaDB-Replication-Read-Write-Splitting-Tutorial.md b/Documentation/Tutorials/MariaDB-Replication-Read-Write-Splitting-Tutorial.md index 93f95dff2..4b260f19c 100644 --- a/Documentation/Tutorials/MariaDB-Replication-Read-Write-Splitting-Tutorial.md +++ b/Documentation/Tutorials/MariaDB-Replication-Read-Write-Splitting-Tutorial.md @@ -106,9 +106,8 @@ service=Splitter Service ``` A listener must also define the protocol module it will use for the incoming -network protocol, currently this should be the `MariaDBClient` protocol for all -database listeners. The listener may then supply a network port to listen on -and/or a socket within the file system. +network protocol, currently this must be the `MariaDBClient` protocol for all +database listeners. The listener must also supply the network port to listen on. ``` [Splitter Listener] @@ -116,7 +115,6 @@ type=listener service=Splitter Service protocol=MariaDBClient port=3306 -socket=/tmp/ClusterMaster ``` An address parameter may be given if the listener is required to bind to a