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
posted @ 2019-03-12 10:23  php、凯  阅读(1120)  评论(0编辑  收藏  举报