ubuntu16.04安装mysql并配置远程访问

前端之家收集整理的这篇文章主要介绍了ubuntu16.04安装mysql并配置远程访问前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sudo apt install MysqL-server MysqL-client

启动MysqL服务

service MysqL start

配置远程访问

grant all privileges on *.* toroot@"%" identified by "yourpassword" with grant option;

重新授权表

flush privileges;

修改配置文件

sudo gedit /etc/MysqL/MysqL.conf.d

注释掉

bind-address  = 127.0.0.1

即前边加上‘#’

完成重启MysqL服务

service MysqL restart
原文链接:https://www.f2er.com/ubuntu/356476.html

猜你在找的Ubuntu相关文章