Skip to content

Commit 9ea7e3e

Browse files
committed
MariaDB freshness
1 parent f10af1f commit 9ea7e3e

10 files changed

+18
-18
lines changed

articles/mariadb/howto-create-users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010

1111
# Create users in Azure Database for MariaDB

articles/mariadb/howto-data-in-replication.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010

1111
# Configure Data-in Replication in Azure Database for MariaDB
@@ -112,7 +112,7 @@ The following steps prepare and configure the MariaDB server hosted on-premises,
112112
5. Get the current binary log file name and offset.
113113

114114
To determine the current binary log file name and offset, run the command [`show master status`](https://mariadb.com/kb/en/library/show-master-status/).
115-
115+
116116
```sql
117117
show master status;
118118
```
@@ -178,7 +178,7 @@ The following steps prepare and configure the MariaDB server hosted on-premises,
178178
- master_log_file: binary log file name from running `show master status`
179179
- master_log_pos: binary log position from running `show master status`
180180
- master_gtid_pos: GTID position from running `select BINLOG_GTID_POS('<binlog file name>', <binlog offset>);`
181-
- master_ssl_ca: CA certificates context. If you're not using SSL, pass in an empty string.*
181+
- master_ssl_ca: CA certificate's context. If you're not using SSL, pass in an empty string.*
182182

183183

184184
*We recommend passing in the master_ssl_ca parameter as a variable. For more information, see the following examples.
@@ -191,7 +191,7 @@ The following steps prepare and configure the MariaDB server hosted on-premises,
191191

192192
```sql
193193
SET @cert = '-----BEGIN CERTIFICATE-----
194-
PLACE YOUR PUBLIC KEY CERTIFICATES CONTEXT HERE
194+
PLACE YOUR PUBLIC KEY CERTIFICATE'S CONTEXT HERE
195195
-----END CERTIFICATE-----'
196196
```
197197

@@ -219,19 +219,19 @@ The following steps prepare and configure the MariaDB server hosted on-premises,
219219
3. Check replication status.
220220

221221
Call the [`show slave status`](https://mariadb.com/kb/en/library/show-slave-status/) command on the replica server to view the replication status.
222-
222+
223223
```sql
224224
show slave status;
225225
```
226226

227227
If `Slave_IO_Running` and `Slave_SQL_Running` are in the state `yes`, and the value of `Seconds_Behind_Master` is `0`, replication is working. `Seconds_Behind_Master` indicates how late the replica is. If the value isn't `0`, then the replica is processing updates.
228228
229229
4. Update the corresponding server variables to make data-in replication safer (required only for replication without GTID).
230-
231-
Because of a native replication limitation in MariaDB, you must set [`sync_master_info`](https://mariadb.com/kb/en/library/replication-and-binary-log-system-variables/#sync_master_info) and [`sync_relay_log_info`](https://mariadb.com/kb/en/library/replication-and-binary-log-system-variables/#sync_relay_log_info) variables on replication without the GTID scenario.
230+
231+
Because of a native replication limitation in MariaDB, you must set [`sync_master_info`](https://mariadb.com/kb/en/library/replication-and-binary-log-system-variables/#sync_master_info) and [`sync_relay_log_info`](https://mariadb.com/kb/en/library/replication-and-binary-log-system-variables/#sync_relay_log_info) variables on replication without the GTID scenario.
232232
233233
Check your slave server's `sync_master_info` and `sync_relay_log_info` variables to make sure the data-in replication is stable, and set the variables to `1`.
234-
234+
235235
## Other stored procedures
236236

237237
### Stop replication
@@ -253,7 +253,7 @@ CALL mysql.az_replication_remove_master;
253253
### Skip the replication error
254254

255255
To skip a replication error and allow replication, use the following stored procedure:
256-
256+
257257
```sql
258258
CALL mysql.az_replication_skip_counter;
259259
```

articles/mariadb/howto-database-threat-protection-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010
# Advanced Threat Protection for Azure Database for MariaDB
1111

articles/mariadb/howto-manage-firewall-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: andrela
66
ms.service: mariadb
77
ms.devlang: azurecli
88
ms.topic: conceptual
9-
ms.date: 12/02/2019
9+
ms.date: 3/18/2020
1010
---
1111

1212
# Create and manage Azure Database for MariaDB firewall rules by using the Azure CLI

articles/mariadb/howto-manage-firewall-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010
# Create and manage Azure Database for MariaDB firewall rules by using the Azure portal
1111
Server-level firewall rules can be used to manage access to an Azure Database for MariaDB Server from a specified IP address or a range of IP addresses.

articles/mariadb/howto-manage-vnet-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: andrela
66
ms.service: mariadb
77
ms.devlang: azurecli
88
ms.topic: conceptual
9-
ms.date: 12/02/2019
9+
ms.date: 3/18/2020
1010
---
1111
# Create and manage Azure Database for MariaDB VNet service endpoints using Azure CLI
1212

articles/mariadb/howto-manage-vnet-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010
# Create and manage Azure Database for MariaDB VNet service endpoints and VNet rules by using the Azure portal
1111

articles/mariadb/howto-read-replicas-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010

1111
# How to create and manage read replicas in Azure Database for MariaDB using the Azure CLI and REST API

articles/mariadb/howto-read-replicas-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010

1111
# How to create and manage read replicas in Azure Database for MariaDB using the Azure portal

articles/mariadb/howto-restart-server-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 3/18/2020
99
---
1010

1111
# Restart Azure Database for MariaDB server using the Azure CLI

0 commit comments

Comments
 (0)