In My Case: Master - Slave Replication Step by Step
In My Case: Master - Slave Replication Step by Step
In my Case
Master IP=192.168.172.133
SLAVE IP=192.168.172.134
#mysql -uroot -p
Create replication user on Master db server, slave will use this user to connect to master db.
mysql> create user 'repli'@'192.168.172.134' IDENTIFIED WITH mysql_native_password BY 'Admin123!';
On master database you run the command “show master status\G” to get binlog file name and
binlog position
Now we start the replication process in slave server by login into MySQL server at slave with
root and stop slave.
TESTING