1
0

More than 3 years have passed since last update.

Debian 10にMariaDB 10.3をインストール(OS標準)

Last updated at Posted at 2019-10-26

はじめに

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

LOG

インストール

# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
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 mysql start
# mysql -u root -e'select version();'
+---------------------------+
| version()                 |
+---------------------------+
| 10.3.17-MariaDB-0+deb10u1 |
+---------------------------+
1
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
1
0