MySQL データベース Server

MySQLのアップデートでエラーになった場合の対処方法

概要

古いVerのMySQLのDBを新しいVerのMySQLにdumpデータをインポートした後は、データベースのアップグレードが必要です。

 

構築環境

  • CentOS Linux release 8.2.2004 (Core)
  • mysql Ver 8.0.21

 

 

エラー内容

▼ログイン時にエラー内容が表示されます

 command
# mysql_upgrade -u root -p
Enter password:
The mysql_upgrade client is now deprecated. The actions executed by the upgrade client are now done by the server.
To upgrade, please start the new MySQL binary with the older data directory. Repairing user tables is done automatically. Restart is not required after upgrade.
The upgrade process automatically starts on running a new MySQL binary with an older data directory. To avoid accidental upgrades, please use the --upgrade=NONE option with the MySQL binary. The option --upgrade=FORCE is also provided to run the server upgrade sequence on demand.
It may be possible that the server upgrade fails due to a number of reasons. In that case, the upgrade sequence will run again during the next MySQL server start. If the server upgrade fails repeatedly, the server can be started with the --upgrade=MINIMAL option to start the server without executing the upgrade sequence, thus allowing users to manually rectify the problem.

 

 

DBのアップグレード実行

▼一度MySQLを停止

 command
# systemctl stop mysqld

 

▼直接デーモンに強制オプションをを付けて実行する。

 command
# /usr/libexec/mysqld --basedir=/usr --upgrade=FORCE
/usr/libexec/mysqld --user=root --basedir=/usr --upgrade=FORCE

 

 

おすすめ

1

目次1 Windows10で構築するサーバー構成の例2 Windows10 記憶域について3 Windows10 Hyper-vについて Windows10で構築するサーバー構成の例 知らない人も多い ...

2

目次1 記憶域について2 記憶域の作成方法 記憶域について この記事ではWindows 10 の記憶域によるストレージの作成方法について解説します。 そもそも記憶域について詳しく知りたい方は、下記の記 ...

3

目次1 概要2 テキストパーツ3 ボックスデザイン4 カスタムボタン5 会話ふきだし6 ランキング7 レイアウト8 その他パーツ9 記事一覧/カード10 ショートコード補助11 AFFINGER5につ ...

4

ディレクションを担当した世界遺産のガイドアプリより、ムービー用のBGMを1曲担当しました。 Misumi-nishikou It is BGM created for app video. sound ...

5

こちらはプライベートで作成したYoutube投稿用サイクリングムービーのBGMです。 EDM Sound-2 EDM sound for my Youtube. soundcloud.com

-MySQL データベース, Server