mysql -uroot -p123456 #将上面的root替换为你的mysql用户名,123456替换为你的密码
use mysql; #选择mysql数据库,这个库里面存着MySQL的相关数据
show tables; #显示user数据库的表
select user, host from user; #显示user表中的user和host(user库下有user表,user表中又有user列)
grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option; #增添新用户root(@前),密码为root(by后) #all表示全部权限,这里也可以替换为赋予某一具体的权限,例如:select,insert,update,delete,create,drop 等 #之后的*.*表示前面的权限的作用范围,*.*表示对全部数据库的全部表授权,*可以换成具体的数据库/表名,对于某一数据库的某一表授权为“数据库名.表名”。 #%代表允许任意的ip地址访问,可换成具体的ip,被单引号包裹即可 #idntified by 设置密码