mysql8.0开启远程访问

进入mysqlmysql mysql -uroot -p use mysql; //Mysql默认不容许远程登陆,因此须要开启远程访问权限 select user,authentication_string,host from user; update user set host = '%' where user = 'root'; FLUSH PRIVILEGES; //navicat 链接 m
相关文章
相关标签/搜索