访问网站出现Access denied for user 'root'@'%' to database 'xxx'

时间:2022-01-15 19:21:05

在linux下连接了数据库之后,网页上显示Access denied for user 'root'@'%' to database 'xxx'的字样时, 通过数据库授权:

grant all on xxx.* to 'root'@'%' identified by 'password' with grant option;

其中:xxx代表创建的数据库; password为用户密码。