本安装方式仅对5.7.21版本负责。
下载地址:wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.21-linux-glibc2.12-x86_64.tar.gz
shell> groupadd mysql
shell> useradd -r -g mysql -s /bin/false mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> mkdir mysql-files
shell> chown mysql:mysql mysql-files
shell> chmod 750 mysql-files
shell> bin/mysqld --initialize --user=mysql
shell> bin/mysql_ssl_rsa_setup
shell> bin/mysqld_safe --user=mysql &
# Next command is optional 回车。
shell> cp support-files/mysql.server /etc/init.d/mysql.server
shell> vim ~/.bash_profile
# mysql [
export MYSQL_HOME=/usr/local/mysql
# mysql ]
PATH=$PATH:$HOME/bin:$MYSQL_HOME/bin
shell> source ~/.bash_profile