在centos中使用wget命令安裝mysql,具體方法如下:
1.首先,在centos命令行中使用yum安裝wget命令;
yum install wget
2.wget命令安裝好后,使用wget命令下載mysql的repo源,并安裝;
wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm
3.repo源安裝好后,繼續在命令行中執行以下命令即可安裝mysql;
sudo yum install mysql-server