Log shipping with MySQL
Greeting all
What is log shipping 开发者_JAVA技巧and how do we do it? I am using MySQL in a LAMPP environment.
Log shipping means telling MySQL to save a separate record of every transaction, and periodically asking the slave node or nodes to read in those records. http://www.howtoforge.com/mysql_database_replication has a decent walkthrough of how to do that.
Here's how to make a log dump for replication purposes:
https://dev.mysql.com/doc/refman/5.7/en/replication-configuration.html
精彩评论