Skip to main content
  1. Tags/

Mysql

2023


2013


2012


2010


Monitor MySQL restore progress with pv

··250 words·2 mins
The pv command is one that I really enjoy using but it’s also one that I often forget about.

2009


2008


MySQL: ERROR 1040: Too many connections

··651 words·4 mins
If you run a fairly busy and/or badly configured MySQL server, you may receive something like this when attempting to connect:

Backing up MySQL to Amazon’s S3

··123 words·1 min
I received an e-mail from Tim Linden about a post he made in his blog about backing up MySQL data to Amazon’s S3.

Plesk and MySQL 5

··110 words·1 min
One of the questions I receive the most is: “What version of Plesk works with MySQL 5?

MySQL Replication: Wrap-up

··71 words·1 min
After a couple of weeks, my MySQL replication series has come to a close.

MySQL Replication: Slave Performance

··124 words·1 min
There’s a few final configuration options that may help the performance of your slave MySQL servers.

MySQL Replication: Upgrading the MySQL server

··197 words·1 min
If you want to make a DBA nervous, just let them know that they need to upgrade MySQL servers that are replicating in a production environment.

MySQL Replication: Breakdown

··313 words·2 mins
On some occasions, MySQL replication can break down if an statement comes from the master that makes no sense to the slave.

MySQL Replication: Delayed Slaves

··385 words·2 mins
In a perfect world, slaves will contain the same data as the master at all times.

MySQL Replication: Horizontal Data Partitioning

··110 words·1 min
If you have a master with multiple slaves, you can get some performance and save money on hardware by splitting data horizontally among your servers.

MySQL Replication: Backups & Data Integrity

··180 words·1 min
An often overlooked benefit of MySQL replication is the ability to make reliable backups without affecting the integrity of the MySQL data.

MySQL Replication: Redundancy

··311 words·2 mins
Although performance is a much larger benefit of replication, it provides some redundancy for your application as well.

MySQL Replication: Performance

··269 words·2 mins
MySQL replication can increase performance by allowing developers to spread queries over two servers.

2007


Seven Step MySQL Replication

··133 words·1 min
MySQL replication may sound complicated, but it can be done easily.