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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)