Elencare il vecchio MySql
yum list installed | grep -i mysql
Rimuovere il vecchio MySql
yum remove mysql mysql-*
Dipendenza da Remi su 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
Installa il server MySQL
yum --enablerepo=remi,remi-test install mysql mysql-server
Per elencare il nuovo MySql
yum list installed | grep -i mysql
avvia il server MySql
/etc/init.d/mysqld start
## usa il riavvio dopo l'aggiornamento
O
service mysqld start
## usa il riavvio dopo l'aggiornamento
chkconfig --levels 235 mysqld on
Ultimo
mysql_upgrade -u root -p
Ora la mia versione di MySql è 5.5.32
Rif:
http://www.webtatic.com/packages/mysql55/
http://www.if-not-true-then-false.com/2010/install-mysql-on-fedora-centos-red-hat-rhel/
Spero che aiuti qualcuno
NOTA: Aggiunta di commenti da @pim (nei commenti)
Just wanted to add that after the upgrade, my crontab was removed as well. Had to reinstall with "yum install vixie-cron" (CentOS 6)