Image

ナレッジベース → Debian 12 での MariaDB サーバーの更新

[仮想サーバー]
公開日: 16.09.2024

デフォルトでは、Debian 12 に MariaDB バージョン 10.x がインストールされており、一部のアプリケーションではより新しいバージョンが必要です。本ガイドでは、MariaDB 11.3 バージョンにアップデートする手順を説明します。

1. リポジトリを追加

/etc/apt/sources.list.d/
apt install curl
curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | sudo bash -s -- --mariadb-server-version="mariadb-11.3"

2. インストール済みのパッケージを更新

apt update
apt upgrade
systemctl stop mariadb
apt install --only-upgrade mariadb-server
apt autoremove
systemctl daemon-reload
systemctl start mariadb

2.1 起動エラーが発生した場合は、設定ファイル内の行をコメントアウトしてください

/etc/mysql/mariadb.conf.d/

provider_bzip2.cnf
#provider_bzip2=force_plus_permanent

provider_lz4.cnf
#provider_lz4=force_plus_permanent

provider_lzma.cnf
#provider_lzma=force_plus_permanent

provider_lzo.cnf
#provider_lzo=force_plus_permanent

provider_snappy.cnf
#provider_snappy=force_plus_permanent

3. データベースのアップデート

service mariadb restart
mariadb-upgrade

必要に応じて、パスワードを使用して実行:

mariadb-upgrade -u root -p

完了です。バージョンを確認するには、次のコマンドを使用できます:

dpkg -l | grep mariadb

または

mariadb

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 11.3.2-MariaDB-1:11.3.2+maria~deb12 mariadb.org binary distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.




No Comments Yet