Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sync Local Database data to a remote Database

I'm having a system which runs online. I have to make that system run in localhost. But the original online system should be updated once a day. Anyone know about a tool which can transfer the local database data to the remote database which is MySQL

like image 794
jayaneetha Avatar asked Sep 07 '25 01:09

jayaneetha


1 Answers

Use the mysqldump that is a native mysql tool to create a dump from your database and restore it on the other side ! (but this depends on your database size)
Or you can use replication with a delay window!
For how to replicate your MySQL database follow this article here !

like image 168
Up_One Avatar answered Sep 09 '25 04:09

Up_One