はじめに
Debian 8にMySQL5.5をインストール
親記事:MySQL, MariaDBの各種インストール方法とEOLまとめ - Qiita
LOG
インストール
# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 8 (jessie)"
NAME="Debian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=debian
HOME_URL="http://www.debian.org/"
SUPPORT_URL="http://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
# apt update; apt install -y mysql-server
... 略
各種確認
# service mysql start
# mysql -u root -e'select version();'
+-----------------+
| version() |
+-----------------+
| 5.5.62-0+deb8u1 |
+-----------------+