Seven Step MySQL Replication
MySQL replication may sound complicated, but it can be done easily. Here’s a quick 7-step guide:
1) Create a replication user on the master:
mysql> GRANT REPLICATION SLAVE ON *.* TO ‘repl’@'%’ IDENTIFIED BY ‘password’;
2) On the master server, add the following to the [mysqld] section in my.cnf and restart MySQL:
server-id = 1
relay_log=mysqldrelay
log-bin
expire_logs_days = 7
3) On [...]
Texas1EMT
Texas1EMT
majorh at gmail
rackerhacker / +1-830-584-1564
rackerhacker