安装方法:
众所周知,Linux系统自带的repo是不会自动更新每个软件的最新版本(基本都是比较靠后的稳定版),
所以无法通过yum方式安装MysqL的高级版本。所以我们需要先安装带有当前可用的MysqL5系列社区版资源的rpm包。
#######安装rpm包 [root@typecodes ~]# rpm -Uvh http://dev.MysqL.com/get/MysqL-community-release-el7-5.noarch.rpm
这时查看当前可用的MysqL安装资源:
[root@typecodes ~]# yum repolist enabled | grep "MysqL.*-community.*" MysqL-connectors-community/x86_64 MysqL Connectors Community
14 MysqL-tools-community/x86_64 MysqL Tools Community 17 MysqL56-community/x86_64 MysqL 5.6 Community Server
从上面的列表可以看出,MysqL56-community/x86_64和MysqL 5.6 Community Server可以使用。
因此,我们就可以直接用yum方式安装了MysqL5.6版本了。
yum -y install MysqL-community-server
systemctl enable MysqLd
systemctl start MysqLd
MysqL_secure_installation
原文链接:https://www.f2er.com/centos/376801.html