diff --git a/_toc.yml b/_toc.yml index 13f9019dcf..787f9bf035 100644 --- a/_toc.yml +++ b/_toc.yml @@ -794,6 +794,7 @@ entries: - file: docs/products/mysql/howto/connect-with-java - file: docs/products/mysql/howto/connect-with-php - file: docs/products/mysql/howto/create-database + - file: docs/products/mysql/howto/create-remote-replica - file: docs/products/mysql/howto/connect-from-mysql-workbench - file: docs/products/mysql/howto/migrate-from-external-mysql - file: docs/products/mysql/howto/do-check-service-migration diff --git a/docs/products/mysql/howto/create-remote-replica.rst b/docs/products/mysql/howto/create-remote-replica.rst new file mode 100644 index 0000000000..4346a03ce2 --- /dev/null +++ b/docs/products/mysql/howto/create-remote-replica.rst @@ -0,0 +1,26 @@ +Create MySQL remote replica +=========================== + +The goal of the remote replica is to provide a read-only instance of your managed MySQL service in another geographically diverse region. + +This works as an extra measure to protect your data from the unlikely event that a whole region would go down. It can also improve performance if a read replica is placed closer to your end-users that read from the database. + +Here are the steps to provision remote replica + +1. Login into the Aiven console using your credentials + +2. Navigate to the MySQL instances for which you wish to create a remote replica + +3. Click the "Create a read replica" button + +.. image:: /images/products/mysql/mysql-create-read-only-replica.png + :alt: Screenshot of the Create Read-Only Replica + +4. For the remote replica, give your service a name, select the cloud provider and region, and choose a suitable Aiven for MySQL plan. + +5. Click "Create" + +.. image:: /images/products/mysql/mysql-create-read-only-replica-choose-plan.png + :alt: Screenshot of the Create Read-Only Replica + +That's it. You will see the read replica being created and listed as any other Aiven service on the Services page on the console. diff --git a/images/products/mysql/mysql-create-read-only-replica-choose-plan.png b/images/products/mysql/mysql-create-read-only-replica-choose-plan.png new file mode 100644 index 0000000000..6433e246cb Binary files /dev/null and b/images/products/mysql/mysql-create-read-only-replica-choose-plan.png differ diff --git a/images/products/mysql/mysql-create-read-only-replica.png b/images/products/mysql/mysql-create-read-only-replica.png new file mode 100644 index 0000000000..f05b2b013d Binary files /dev/null and b/images/products/mysql/mysql-create-read-only-replica.png differ