MySQL命令行创建用户

2016-03-22 15:47:47 7682

第一步:mysql -u root -p

第二步:进入根用户use mysql

第三步:创建用户名create user username;(相当于grant select,insert,update,delete on *.* to user1@localhost Identified by "password1";

第四步:给用户赋登录密码update.user set password=password('password1') where user="username"; 也可以在root用户下用此命令修改其他数据库密码

第五步:给用户授予所有的权限grant all privileges on *.* to username@"%" Identified by "password1" with grant option;

123.png


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: