Monthly Archives: March 2015

Fix MySQL replication error

When you setup replication you need to make sure that no other data is available in the slave that can cause the data to be inconsistent. But if you run into problems like I had, you might notice that the … Continue reading

Posted in Database | Tagged , | Comments Off on Fix MySQL replication error

Git repository cluster setup

When you have gitosis and a number of repositories installed on a server and need to move them to another server or you want to build a cluster to have more then one server having serving the repository. This will describe how I solved this with my gitosis repositories. Continue reading

Posted in Linux Administration, Version control system | Tagged , , , , | Comments Off on Git repository cluster setup

Setup mysql master slave replication

MySQL server provides replication functionality to replicate data from a master server to multiple slave servers. The concept behind it is that there is one master server that allows read and write access and one or more slave servers that … Continue reading

Posted in Database | Tagged , | Comments Off on Setup mysql master slave replication