Reputation: 8071
Greeting all
What is log shipping and how do we do it? I am using MySQL in a LAMPP environment.
Upvotes: 0
Views: 10673
Reputation: 41
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.
Upvotes: 4
Reputation: 360592
Here's how to make a log dump for replication purposes:
https://dev.mysql.com/doc/refman/5.7/en/replication-configuration.html
Upvotes: 1