mysql个版本下载地址:http://mirrors.sohu.com/mysql/
yum install -y perl-Module-Install.noarch libaio*
tar xf mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz -C /usr/local/src/
cd /usr/local/src/mysql-5.6.34-linux-glibc2.5-x86 ln -sv /usr/local/src/mysql-5.6.34-linux-glibc2.5-x86_64 /usr/local/mysql cd /usr/local/mysql/
useradd mysql -s /sbin/nologin chown -R mysql.mysql ./* –R
mkdir /data/mysql && chown mysql.mysql /data/mysql –R
/usr/local/mysql/scripts/mysql_install_db --user=mysql --datadir=/data/mysql --basedir=/usr/local/mysql/
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql cp /usr/local/mysql/my.cnf /etc/my.cnf
ln -sv /usr/local/mysql/bin/mysql /usr/bin/
/etc/init.d/mysql restart
[root@localhost ~]# /usr/local/mysql/bin/mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server version: 5.6.34 MySQL Community Server (GPL) Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
原文地址:http://blog.51cto.com/wuyanxxk/2117840