mysql5.7用户创建及密码修改
作者:互联网
1.创建用户并授权
创建用户user,密码为:mypassword,其可以本地登录,并可以访问任何数据库
grant all privileges on *.* to 'user'@'localhost' identified by 'mypassword'; 本地授权
创建用户user,密码为:mypasword,其可以远程登录,并可以访问任何数据库
grant all privileges on *.* to 'user'@'%' identified by 'mypassword'; 远程授权
flush privileges; #刷新系统权限表
标签:mypassword,创建,mysql5.7,grant,用户,密码,user,privileges 来源: https://www.cnblogs.com/indifferent/p/14300868.html