关于mysql grant权限语句的报错问题
PHP中文网
PHP中文网 2017-04-17 13:38:43
0
4
1007

我用 mysql -u root -p
登陆进去敲入命令
grant all on . to ja identified by '123' with grant option;
提示Query OK, 0 rows affected (0.00 sec)

退出后,用刚新建的ja账号登陆
mysql -u ja -p

提示 ERROR 1045 (28000): Access denied for user 'ja'@'localhost' (using password: YES)

请问为啥?

PHP中文网
PHP中文网

认证高级PHP讲师

全部回复(4)
大家讲道理

需要刷新系统权限表[flush privilege] 该用户才能生效登录

flush privileges;
迷茫

如果是grant all on . to ja@localhost ...
的话,应该就不会报错了

黄舟

grant的命令格式为:mysql> grant all on . to 'user'@'ip' identified by 'password' with grant option;

刘奇

grant all on . to 'ja'@'%' identified by '123' with grant option;
flush privileges;
quit;
然后再登录看看:mysql -u ja -p 123

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!