From 50591ee23ac3133648e4f6f4cf140f7cf96e54f5 Mon Sep 17 00:00:00 2001 From: wibyweb <49052850+wibyweb@users.noreply.github.com> Date: Wed, 7 Sep 2022 00:05:35 -0400 Subject: [PATCH] Update guide.html --- html/about/guide.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/html/about/guide.html b/html/about/guide.html index a359630..356bafa 100755 --- a/html/about/guide.html +++ b/html/about/guide.html @@ -508,13 +508,19 @@ UNLOCK TABLES; You can now close that window if you want.
-On the replica server, import the database: +
+On the replica server, login to mysql and create the database: +
+CREATE DATABASE wiby;
+EXIT;
+
+Import the database:
 mysql -u root -p wiby < wiby.sql
 
-Login to MySQL and type the following but replace the IP, MASTER_LOG_FILE, and MASTER_LOG_POS with yours from the table: +Login to MySQL and type the following but replace the primary_server_ip, MASTER_LOG_FILE, and MASTER_LOG_POS with yours from the table:
-CHANGE MASTER TO MASTER_HOST='primary.server.ip',MASTER_USER='slave_user', MASTER_PASSWORD='d0gemuchw0w', MASTER_LOG_FILE='mysql-bin.000055', MASTER_LOG_POS=15871269;
+CHANGE MASTER TO MASTER_HOST='primary_server_ip',MASTER_USER='slave_user', MASTER_PASSWORD='d0gemuchw0w', MASTER_LOG_FILE='mysql-bin.000055', MASTER_LOG_POS=15871269;
 START SLAVE;
 
To verify that the replica is syncronized, type the following on the replica in MySQL: