CentOS使用wget下载mysql
1、首先在centos上边安装wget
yum install wget
2、wget安装mysql
1. 下载mysql的repo源
wget -P 指定路径 http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
2. 安装mysql-community-release-el7-5.noarch.rpm包
rpm -ivh mysql-community-release-el7-5.noarch.rpm
3. 安装mysql
yum install mysql-server