mysql root设置远程访问

方法一:update改表方式

use mysql;
select host,user from user; # 查询当前状态
update user set host = '%' where user = 'root'; # 修改访问限制为%
flush privileges; # 重新载入授权表,刷新权限缓存

方法二:grant授权方式

grant all privileges on *.* to 'root'@'%' ; # all privileges代表所有权限。*.*代表“库.表”
flush privileges; # 重新载入授权表,刷新权限缓存

相关异常:

一、Can’t connect to MySQL server (10060)

  1. 防火墙屏蔽了端口。
  2. mysql服务未开启。
  3. ping不通

二、Can’t connect to MySQL server (10061)
服务器绑定的是127.0.0.1:3306端口,需要把mysqld.conf配置文件中的bind-address = 127.0.0.1注释掉。
其他异常:Mysql 2003 - Can‘t connect to Mysql on ‘xxxxx‘(10061)

相关参考:
ubuntu上mysql端口3306无法远程连接

你可能感兴趣的:(MySql,mysql,数据库,缓存)