Vypsat staré MySql
yum list installed | grep -i mysql
Odstranění starého MySql
yum remove mysql mysql-*
Závislost Remi na CentOS 6 a 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
Nainstalujte server MySQL
yum --enablerepo=remi,remi-test install mysql mysql-server
Vypsat nový MySql
yum list installed | grep -i mysql
spusťte server MySql
/etc/init.d/mysqld start
## použít restart po aktualizaci
NEBO
service mysqld start
## použít restart po aktualizaci
chkconfig --levels 235 mysqld on
Poslední
mysql_upgrade -u root -p
Moje verze MySql je nyní 5.5.32
Referenční číslo:
http://www.webtatic.com/packages/mysql55/
http://www.if-not-true-then-false.com/2010/install-mysql-on-fedora-centos-red-hat-rhel/
Doufám, že to někomu pomůže
POZNÁMKA: Přidávání komentářů od @pim (v komentářích)
Just wanted to add that after the upgrade, my crontab was removed as well. Had to reinstall with "yum install vixie-cron" (CentOS 6)