本当はバージョン違いのmysqlを同時に動かす魂胆でしたが
なかなかうまく行かず、面倒になったのでアップグレードにしました。
これはその時の備忘録です。
前提環境
バージョン | |
---|---|
OS | CentOS 6.8 |
MySQL(アップグレード前) | 5.1.73 |
MySQL(アップグレード後) | 5.7.17 |
MySQLをバージョンアップ
MySQLの公式サイトからCentOS6用のリポジトリをダウンロードしていきます。
CentOSのバージョンとRed Hat Enterprise Linuxのバージョンは同じなので、
Red Hat Enterprise Linux 6のリポジトリを探します。
# rpm -ivh https://dev.mysql.com/get/mysql57-community-release-el6-9.noarch.rpm
MySQLをフォルダごとバックアップ。「mysql」フォルダをとりあえず「mysql_51_bak」という名前でコピー。
# sudo cp -arpf /var/lib/mysql/ /var/lib/mysql_51_bak/
MySQLを停止します。
# /etc/init.d/mysqld stop
MySQLをアップデート。
# yum update mysql-server
実行するとずらずらずらーと出てきますので、すべてyを押します。
警告: rpmts_HdrFromFdno: ヘッダ V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql Importing GPG key 0x5072E1F5: Userid : MySQL Release Engineering <mysql-build@oss.oracle.com> Package: mysql57-community-release-el6-9.noarch (installed) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-mysql これでいいですか? [y/N] y
Complete! と出れば成功です。
で、一度mysqldを起動するのですが
自分の環境の場合、下記のエラーが発生し、MySQLが起動できませんでした。
[ERROR] Fatal error: mysql.user table is damaged. Please run mysql_upgrade. [ERROR] Aborting
そのため、セーフモード(ユーザ認証のパスワードなし)で起動し、mysql_upgradeコマンドを実行しています。
下記のコマンドで、MySQLをセーフモードで起動する。
# /usr/bin/mysqld_safe --skip-grant-tables &
セーフモードで起動後、テーブルをアップグレードする
# mysql_upgrade -u root -p Enter password: Checking if update is needed. Checking server version. Running queries to upgrade MySQL server. Checking system database. . .. ... Upgrade process completed successfully. Checking if update is needed.
どうやら成功したみたいですね。
で、my.cnfに下記を追加する。
mysql5.6以降は暗黙のデフォルト値としてTIMESTAMP型を使用することが
非推奨になっているため、下記設定をしないとWARNINGが発生する。…とのことらしい。
# vi /etc/my.cnf [mysqld] explicit_defaults_for_timestamp = true
で、MySQLを再起動する。
# service mysqld restart
mysqlに接続できるか確認します。
# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.17 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>
おー、うまく行きましたね。
# mysql -V mysql Ver 14.14 Distrib 5.7.17, for Linux (x86_64) using EditLine wrapper
MySQLのバージョンも5.7まで上がりました。よかったです。