Para listar o antigo MySQL
yum list installed | grep -i mysql
Para remover o antigo MySQL
yum remove mysql mysql-*
Dependência Remi no CentOS 6 e Red Hat (RHEL) 6
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
Instalar servidor MySQL
yum --enablerepo=remi,remi-test install mysql mysql-server
Para listar o novo MySQL
yum list installed | grep -i mysql
iniciar servidor MySQL
/etc/init.d/mysqld start
## use reiniciar após atualização OU
service mysqld start
## use reiniciar após atualização chkconfig --levels 235 mysqld on
Último
mysql_upgrade -u root -p
Agora minha versão do MySQL é 5.5.32
Referência:
http://www.webtatic.com/packages/mysql55/
http://www.if-not-true-then-false.com/2010/install-mysql-on-fedora-centos-red-hat-rhel/
Espero que ajude alguém
OBSERVAÇÃO: Adicionando comentários de @pim (nos comentários)
Just wanted to add that after the upgrade, my crontab was removed as well. Had to reinstall with "yum install vixie-cron" (CentOS 6)