Um altes MySql aufzulisten
yum list installed | grep -i mysql
Um altes MySql zu entfernen
yum remove mysql mysql-*
Remi-Abhängigkeit von CentOS 6 und 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
MySQL-Server installieren
yum --enablerepo=remi,remi-test install mysql mysql-server
Neues MySql auflisten
yum list installed | grep -i mysql
MySql-Server starten
/etc/init.d/mysqld start
## Neustart nach Update verwenden
ODER
service mysqld start
## Neustart nach Update verwenden
chkconfig --levels 235 mysqld on
Letzte
mysql_upgrade -u root -p
Jetzt ist meine MySQL-Version 5.5.32
Referenz:
http://www.webtatic.com/packages/mysql55/
http://www.if-not-true-then-false.com/2010/install-mysql-on-fedora-centos-red-hat-rhel/
Hoffe, es hilft jemandem
HINWEIS: Hinzufügen von Kommentaren von @pim (in Kommentaren)
Just wanted to add that after the upgrade, my crontab was removed as well. Had to reinstall with "yum install vixie-cron" (CentOS 6)