美文网首页
mysql允许远程连接

mysql允许远程连接

作者: 残风疏影 | 来源:发表于2017-07-05 17:42 被阅读0次

use mysql;
update db set host = '%' where user = 'root';
flush privileges;
grant all privileges on . to 'root'@'%' identified by '123456' with grant option;

修改ip

vim /etc/mysql/my.cnf

重启服务

service mysql restart

相关文章

网友评论

      本文标题:mysql允许远程连接

      本文链接:https://www.haomeiwen.com/subject/hgiqhxtx.html