You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Data loading, Migration/Replicating data from external DB.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
MariaDB SkySQL customers can configure inbound replication from both **MySQL** and **MariaDB** to a compatible MariaDB running in SkySQL. This guide will walk you through setting up replication for both MySQL and MariaDB as the source databases.
4
4
5
-
For additional information about the stored procedures used to configure replication with Replicated Transactions services, see [SkySQL Replication Helper Procedures for Replicated Transactions](https://mariadb.com/docs/skysql-previous-release/ref/replication-procedures/replicated-transactions/).
5
+
For additional information about the stored procedures used to configure replication with Replicated Transactions services, see [SkySQL Replication Helper Procedures for Replicated Transactions](https://docs.skysql.com/Reference%20Guide/Sky%20Stored%20Procedures/).
This will return a `GRANT` statement that needs to be executed on the external MySQL server:
47
47
48
48
```sql
49
49
GRANT REPLICATION SLAVE ON*.* TO 'skysql_replication'@'%' IDENTIFIED BY '<password_hash>';
50
50
```
51
51
52
-
For MariaDB (GTID Based) if preferred refer to [sky.change_external_primary_gtid()](https://mariadb.com/docs/skysql-previous-release/ref/replication-procedures/replicated-transactions/#change_external_primary_gtid)
52
+
For MariaDB (GTID Based) if preferred refer to [sky.change_external_primary_gtid()](https://docs.skysql.com/Reference%20Guide/Sky%20Stored%20Procedures/#change_external_primary_gtid)
53
53
54
54
## Step 3: Start Replication
55
55
@@ -70,7 +70,7 @@ This will return a confirmation message such as:
70
70
```
71
71
72
72
You can find the documentation for this procedure here:
0 commit comments