debian9安装mysql

Posted php、凯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了debian9安装mysql相关的知识,希望对你有一定的参考价值。

cd /tmp
wget https://dev.mysql.com/get/mysql-apt-config_0.8.7-1_all.deb
dpkg -i mysql-apt-config_*.deb
选择5.7版本
apt update
apt install mysql-community-server -y
安装完成
登录mysql,设置允许远程连接
GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘password‘ WITH GRANT OPTION;
FLUSH PRIVILEGES;
vim mysql.conf.d
将bind-address  = 127.0.0.1”改为“bind-address  = 0.0.0.0

以上是关于debian9安装mysql的主要内容,如果未能解决你的问题,请参考以下文章

[转]debian9 安装任意版本mysql

Debian9 在LAMP环境安装和部署WordPress

Debian之MySQL

Debian安装mysql-server

deepin下安装MySQL8.0

安装MariaDB 无法登录解惑