LoginSignup
0
0

More than 3 years have passed since last update.

Ubuntu 16.04にMariaDB 10.0をインストール(OS標準)

Last updated at Posted at 2019-10-26

はじめに

Ubuntu16.04にMySQL10.0をインストール
親記事:MySQL, MariaDBの各種インストール方法とEOLまとめ - Qiita

LOG

インストール

# cat /etc/os-release
NAME="Ubuntu"
VERSION="16.04.6 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.6 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial

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

各種確認

# service mysql start
# mysql -u root -e'select version();'
+----------------------------------+
| version()                        |
+----------------------------------+
| 10.0.38-MariaDB-0ubuntu0.16.04.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