This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# | |
# sudo bash < <(curl -s https://gist.github.com/jmervine/5373441/raw/) | |
set -x | |
cd /tmp | |
wget http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-shared-5.6.10-1.el6.x86_64.rpm/from/http://cdn.mysql.com/ | |
wget http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-client-5.6.10-1.el6.x86_64.rpm/from/http://cdn.mysql.com/ | |
wget http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-server-5.6.10-1.el6.x86_64.rpm/from/http://cdn.mysql.com/ | |
wget http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-devel-5.6.10-1.el6.i686.rpm/from/http://cdn.mysql.com/ | |
rpm -qa | grep mysql-libs && yum remove -y mysql-libs | |
yum install -y MySQL-shared-5.6.10-1.el6.x86_64.rpm | |
yum install -y MySQL-client-5.6.10-1.el6.x86_64.rpm | |
yum install -y MySQL-server-5.6.10-1.el6.x86_64.rpm | |
yum install -y MySQL-devel-5.6.10-1.el6.i686.rpm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment