published: February 13th, 2010, 7:23 pm, PST
revision: February 13th, 2010, 7:23 pm, PST
topics: mysql, wordpress
Upgrade WordPress MySQL 4.0 Database to 5.0 on 1&1 via SSH
Recently, WordPress made a MySQL 5.0 database mandatory. I was running 4.0 on WaterBlogged!, so I had to upgrade if I was to keep the WordPress installation current. It turned out to be very, very easy. Here’s some notes for anyone else in the same predicament:
1: Export the ol’ 4.0 database via SSH:
mysqldump -h dbxxx.perfora.net -u dboxxx -p xxx dbxxx > backup.sql
2: Import to the 5.0 database (you can create this database via the 1&1 GUI or SSH) via SSH:
mysql -h dbyyy.perfora.net -u dboyyy -p yyy dbyyy < backup.sql
3: Edit your wp-config.php to point to the 5.0 database.
4: Login to your WordPress admin page and perform an automatic upgrade as per usual.
Total site downtime should be less than a minute.