0
0

More than 3 years have passed since last update.

Debian 11 にMariaDB 10.5 をインストール(OS標準)

Posted at

はじめに

Debian11にMariaDB10.5をインストール
親記事:MySQL, MariaDBの各種インストール方法とEOLまとめ - Qiita

LOG

インストール

# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

# apt update; apt install -y mariadb-server
... 略

各種確認

# service mariadb start
# mysql -u root -e'select version();'
+-------------------+
| version()         |
+-------------------+
| 10.5.11-MariaDB-1 |
+-------------------+
0
0
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
0
0