1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

MariaDB 10.6 から MariaDB 10.11 へのアップグレード方法

Last updated at Posted at 2023-05-04

この記事では、MariaDB 10.6 から MariaDB 10.11 へのアップグレード方法について説明します。以下の手順に従ってアップグレードを行ってください。

1. リポジトリ設定を変更

システムのパッケージマネージャが MariaDB 10.11 をインストールするようにリポジトリ設定を変更します。

2. MariaDB を停止

MariaDB サービスを停止します。

3. 古いバージョンの MariaDB をアンインストール

MariaDB 10.6 のアンインストール方法はディストリビューションによって異なります。

  • Debian, Ubuntu, および同様の Linux ディストリビューションで以下を実行します:
    sudo apt-get remove mariadb-server
    
  • RHEL, CentOS, Fedora, および同様の Linux ディストリビューションで以下を実行します:
    sudo yum remove MariaDB-server
    
  • SLES, OpenSUSE, および同様の Linux ディストリビューションで以下を実行します:
    sudo zypper remove MariaDB-server
    

4. 新しいバージョンの MariaDB をインストール

MariaDB 10.11 のインストール方法はディストリビューションによって異なります。

5. 設定ファイルの変更

必要に応じて、my.cnf などの設定ファイルでオプションを変更します。これには、サポートされなくなったオプションの削除も含まれます。

6. MariaDB を起動

新しいバージョンの MariaDB を起動します。

7. mariadb-upgrade を実行

最後に、mariadb-upgrade を実行します。これにより、以下の2つの作業が行われます。

sudo mariadb-upgrade -u root -p
  1. mysql データベース内のシステムテーブルが新しいバージョンと完全に互換性があることを確認します。
  2. すべてのテーブルを素早くチェックし、新しいバージョンの MariaDB と互換性があることをマークします。

以上が、MariaDB 10.6 から MariaDB 10.11 へのアップグレード手順です。これらの手順に従って進めることで、スムーズにアップグレードが完了します。

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?