Ubuntu设置MySql局域网可以访问
1、打开并修改文件
sudo gedit /etc/mysql/mysql.conf.d/mysqld.cnf
把里面的bind-address = 127.0.0.1
改成 # bind-address = 127.0.0.1 进行屏蔽
mysql -uroot -p你的密码
use mysql
update user set host = '%' where user ='root';
grant all privileges on *.* to 'root'@'%' with grant option;
flush privileges;
exit;
重启服务
sudo /etc/init.d/mysql restart
本文来自博客园,作者:沉迷编程的程序员,转载请注明原文链接:https://www.cnblogs.com/codeDevotee/p/12255879.html
欢迎各位找我代写程序,python、c#、web等都可以,加我请注明博客园微信:A15919195482