yum安装mysql5.7和5.6
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yum安装mysql5.7和5.6相关的知识,希望对你有一定的参考价值。
通常yum安装mysql-server时,mysql版本都比较低,如果想安装较高版本,可以导入官方的yum源来安装
安装mysql5.7
1、下载官方的yum源并导入
下载地址:http://dev.mysql.com/downloads/repo/yum/
2、导入yum源:
1 | rpm -ivh mysql57-community-release-el6-8.noarch.rpm |
清空yum缓存并重建
1 | yum clean all && yum makecache |
3、安装mysql
1 | yum -y install mysql-community-server |
注意:用这种官方的yum源安装时,下载速度很慢,所以安装起来比较话时间,建议是下载RPM包安装
安装mysql5.6
1 | wget http: //dev .mysql.com /get/mysql-community-release-el6-5 .noarch.rpm |
1 | rpm -i mysql-community-release-el6-5.noarch.rpm |
1 | yum install mysql-community-server.x86_64 |
Service mysqld start
设置root的密码: 安装完成后默认密码为空
1 | #mysqladmin -uroot -hlocalhost -p password ‘123456‘ |
1 2 | # mysql -V mysql Ver 14.14 Distrib 5.6.33, for Linux (x86_64) using EditLine wrapper |
本文出自 “高家大少的技术博客” 博客,请务必保留此出处http://gpj1997.blog.51cto.com/12830710/1940989
以上是关于yum安装mysql5.7和5.6的主要内容,如果未能解决你的问题,请参考以下文章
linux CentOS6.5 yum安装mysql 5.6
linux CentOS6.5 yum安装mysql 5.6
CentOS 7.4下使用yum安装MySQL5.7.20 最简单的