mysql修改密码
grant all privileges on *.* to 'mydb'@'127.0.0.1' identified by 'mypwd' with grant option;
set password for root@127.0.0.1=password('mypwd');
flush privileges;
2019-07-26 23:01:03
grant all privileges on *.* to 'mydb'@'127.0.0.1' identified by 'mypwd' with grant option;
set password for root@127.0.0.1=password('mypwd');
flush privileges;
2019-07-26 23:01:03
共有1条评论!
发表评论11