SHOW MASTER STATUS;CREATE USER 'repl'@'%' IDENTIFIED BY 'password'; GRANT REPLICATION SLAVE ON *.* TO 'repl'@'%';FLUSH TABLES WITH READ LOCK; SHOW MASTER STATUS;CHANGE MASTER TO MASTER_HOST='primary', MASTER_USER='repl', MASTER_LOG_FILE='binlog.000001', MASTER_LOG_POS=157;START REPLICA; SHOW REPLICA STATUS\GSET GLOBAL SQL_REPLICA_SKIP_COUNTER=1; START REPLICA;SELECT Seconds_Behind_Source FROM performance_schema.replication_applier_status;OmniBank needs a read replica to offload reporting queries from the primary. You must configure binlog-based replication, set up a replica server, verify replication lag, handle a replication break caused by a schema change, and implement a read/write routing strategy.
No step-by-step guidance. Use the Reference window for command syntax only. You must determine the approach, the correct columns and order, and verify your own results.