CentOS6.8にyumでMySQL 5.6をインストールするメモ
1.既にインストールしたmysqlを確認
#yum list installed | grep mysql
#yum -y remove mysql-libs.x86_64
2.rpmのダウンロード
#wget http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm
#rpm -ivh mysql-community-release-el6-5.noarch.rpm
#yum repolist all | grep mysql
3.mysqlのインストール
#yum install mysql-community-server -y
4.自動起動の設定
#chkconfig –list | grep mysqld
#chkconfig mysqld on
5.パスワードの設定
#/usr/bin/mysqladmin -u root password 'xxx’
6.パスワードの修正
#mysql -uroot -pxxx
mysql> select Host,User,Password from user where User=’root’;
mysql> update user set Password = password('xxx’) where User=’root’;
mysql> select Host,User,Password from user where User=’root’;
mysql> flush privileges;