Created
June 12, 2013 02:46
-
-
Save ferodss/5762495 to your computer and use it in GitHub Desktop.
Install MySQL Percona Server on CentOS
This file contains hidden or 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
# Add Percona repository | |
rpm -Uhv http://www.percona.com/downloads/percona-release/percona-release-0.0-1.x86_64.rpm | |
# Install | |
yum install Percona-Server-client-55 Percona-Server-server-55 | |
# Set root password | |
mysql -u root | |
mysql> use mysql; | |
mysql> update user set password=PASSWORD("PASSWORD") where user='root'; | |
mysql> flush privileges; | |
mysql> quit; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment