grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
flush privileges;
以上两句话的意思是:1、带着赋予权限的权利,赋予他*限,可访问任何数据库任何表,登陆账号为root,可为任意主机ip,密码为root。
2、更新权限。
grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
flush privileges;
以上两句话的意思是:1、带着赋予权限的权利,赋予他*限,可访问任何数据库任何表,登陆账号为root,可为任意主机ip,密码为root。
2、更新权限。