centos7.1安装mysql6.5

前端之家收集整理的这篇文章主要介绍了centos7.1安装mysql6.5前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装方法


众所周知,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

猜你在找的CentOS相关文章