访问数据库时报错信息
Access denied for user ‘root‘@‘%‘ to database ‘netai_test‘
原因:这是由于创建数据库后没有对用户授权,使用户可以访问数据库的原因。本地访问当然可以。
通过对用户授权就可以了。
grant all on (数据库名).* to ‘(用户)‘@‘%‘ identified by ‘(用户密码)‘ with grant option;
MySQL出现Access denied for user 'root'@'%' to database 'netai_test'问题
时间: 2024-09-30 15:01:02