背景:
今天才申請了騰訊云+校園計劃的1元服務器,安裝了Centos7.0,在安裝MySQL的時候,使用yum list | grep mysql 來查找yum源中是否有mysql,結果如下:
| [root@VM_47_56_centos ~]# yum list | grep mysqlakonadi-mysql.x86_64 1.9.2-4.el7 base apr-util-mysql.x86_64 1.5.2-6.el7 base mysql-proxy.x86_64 0.8.5-2.el7 epel mysql-proxy-devel.x86_64 0.8.5-2.el7 epel mysql-router.x86_64 2.0.2-1.el7 mysql-tools-communitymysql-router-debuginfo.x86_64 2.0.2-1.el7 mysql-tools-communitymysql-utilities.noarch 1.5.6-1.el7 mysql-tools-communitymysql-utilities-extra.noarch 1.5.6-1.el7 mysql-toolsmysqlreport.noarch 3.5-11.el7 epel mysqltuner.noarch 1.2.0-7.el7 epel 省略部分內容。。。。[root@VM_47_56_centos ~]# | 
總之是看不到mysql-server的影子,(PS:據說Centos7.0的源中暫時還沒有mysql,但是相同版本的Centos在阿里云是可以直接使用yum install mysql-server 來直接安裝mysql的)
于是找了一些mysql的安裝源,安裝過程如下:
安裝過程:
為了解決這個問題,我們要先下載mysql的repo源。
1、下載mysql的repo源
| $ wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm | 
2、安裝mysql-community-release-el7-5.noarch.rpm包
| $ sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm | 
安裝這個包后,會獲得兩個mysql的yum repo源: 
/etc/yum.repos.d/mysql-community.repo和/etc/yum.repos.d/mysql-community-source.repo。
3、安裝mysql
| $ sudo yum install mysql-server | 
這個過程中就會看到有mysql的軟件包存在:
| [root@VM_47_56_centos ~]# sudo yum install mysql-server已加載插件:fastestmirror, langpacks | 2.5 kB 00:00:00 mysql-tools-community | 2.5 kB 00:00:00 mysql56-community | 2.5 kB 00:00:00 (1/3): mysql-connectors-community/x86_64/primary_db | 8.6 kB 00:00:00 (2/3): mysql-tools-community/x86_64/primary_db | 22 kB 00:00:00 (3/3): mysql56-community/x86_64/primary_db | 109 kB 00:00:01 Loading mirror speeds from cached hostfile * base: mirrors.sina.cn * extras: mirrors.sina.cn * updates: mirrors.sina.cn正在解決依賴關系--> 正在檢查事務省略內容。。。依賴關系解決================================================================================================================= Package 架構 版本 源 大小=================================================================================================================正在安裝: mysql-community-libs x86_64 5.6.27-2.el7 mysql56-community 2.0 M 替換 mariadb-libs.x86_64 1:5.5.44-1.el7_1 mysql-community-server x86_64 5.6.27-2.el7 mysql56-community 58 M為依賴而安裝: mysql-community-client x86_64 5.6.27-2.el7 mysql56-community 19 M mysql-community-common x86_64 5.6.27-2.el7 mysql56-community 256 k numactl-libs x86_64 2.0.9-5.el7_1 事務概要=================================================================================================================安裝 2 軟件包 (+9 依賴軟件包)總下載量:80 MIs this ok [y/d/N]: y |