mysql数据库连接报错:is not allowed to connect to this mysql server

mysql数据库连接报错:is not allowed to connect to this mysql server

mysql数据库连接报错:is not allowed to connect to this mysql server_第1张图片

1.出现原因

mySql 服务器 默认不允许远程连接 ,只允许本机连接

2.解决方案

  1. 用主机登录用户
mysql  -u root  -p
  1. 修改root 用户的为允许所有主机登录
//需要在mysql 数据库目录下修改
use mysql;
//更改用户的登录主机为所有主机,%代表所有主机
update  user set host='%' where user=root;  
//刷新权限
flush privileges;

你可能感兴趣的:(mysql,数据库,服务器)