欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

修改mysql远程连接_MySQL

程序员文章站 2022-04-20 17:17:01
...
bitsCN.com --修改用户远程连接权限
update user set host = '%' where user = 'root';
select host, user from user;

--开启远程连接
grant all privileges on *.* to 'root' @'%' identified by 'root';
flush privileges;

注:mysql密码必须为root bitsCN.com
相关标签: mysql 用户