centos6.6 升级mysql到5.5 ,因为默认是5.1

前端之家收集整理的这篇文章主要介绍了centos6.6 升级mysql到5.5 ,因为默认是5.1前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原文 :http://www.2cto.com/database/201305/215930.html


参考文档:http://www.jjhr.net/2015/01/install-rhel-epel-repo-on-centos-5-x-or-6-x/

原由:使用yum安装完成MySQLPHP后,MysqL的版本是5.1,最新版本的PHPMyAdmin4.5不支持,需要升级MysqL到5.5.

环境:CentOS 6.7,MysqL 5.1,PHP5.3.,Apache 2.2.15 全部采用Yum安装。其中PHP使用yum升级到了5.5.16.

1.配置新的yum源。

[root@centosPHPyum ~]# rpm -Uvhhttp://rpms.famillecollet.com/enterprise/remi-release-6.rpm

报错:

Retrievinghttp://rpms.famillecollet.com/enterprise/remi-release-6.rpm
warning: /var/tmp/rpm-tmp.AmzSjH: Header V3 DSA/SHA1 Signature,key ID 00f97f56: NOKEY
error: Failed dependencies:
epel-release >= 6 is needed by remi-release-6.6-2.el6.remi.noarch

2.解决错误

wgethttp://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
wgethttp://rpms.famillecollet.com/enterprise/remi-release-6.rpm
rpm -ivh epel-release-6-8.noarch.rpm
rpm -ivh remi-release-6.rpm

配置源配置文件

ls -1 /etc/yum.repos.d/epel* /etc/yum.repos.d/remi.repo

编辑[remi]下的enabled选项从0设为1
[remi]
name=Les RPM de remi pour EnterpriseLinux6 - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/6/remi/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/6/remi/mirror
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi


3.更新库更新完成后,开始升级MysqL

rpm -Uvhhttp://rpms.famillecollet.com/enterprise/remi-release-6.rpm

4.查看更新库中可用的版本:

yum --enablerepo=remi,remi-test list MysqL MysqL-server
5.升级MysqL
yum --enablerepo=remi install MysqL MysqL-server
6.测试升级成功。
 
 
最后发现在有些存储过程有问题
 
 
解决办法:
 
 
http://www.2cto.com/database/201305/215930.html
原文链接:https://www.f2er.com/centos/380235.html

猜你在找的CentOS相关文章