Imran Omar Bukhsh
Imran Omar Bukhsh

Reputation: 8071

Log shipping with MySQL

Greeting all

What is log shipping and how do we do it? I am using MySQL in a LAMPP environment.

Upvotes: 0

Views: 10673

Answers (2)

Dis
Dis

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

Marc B
Marc B

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

Related Questions