Mysql创建新用户并赋予权限

Mysql创建新用户并赋予权限,第1张

create user '用户'@'localhost'identified by'密码'

grant all on 权限 to 用户名@'localhost' identified by "密码"

show grants for '用户名'@'localhost'

select user,host from mysql.user

增加一个用户test1 密码为abc,让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限。

首先用以root 用户连入MySQL,然后键入以下命令:

mysql>grant select,insert,update,

delete on *.* to test2@localhost identified by \"abc\"

grant命令:

创建一个可以从任何地方连接服务器的一个完全的超级用户,但是必须使用一个口令something 做这个:

mysql>grant all privileges on *.* to user@localhost identified

by ’something’ with GRANT OPTION


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7388321.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-05
下一篇 2023-04-05

发表评论

登录后才能评论

评论列表(0条)

保存