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

Debian9安装openssl

Debian9.2安装Zabbix3.4.2

在debian9上安装mongodb

debian9 安装docker 以及在docker中 安装centos 6 安装指定版本的PHP和MySQ