mysql数据库用户密码管理
程序员文章站
2022-10-27 15:54:24
创建用户:create user 'oracle'@'localhost' identified by 'password'; MySQL 8以上:alter user 'root'@'localhost' identified with mysql_native_password by 'newp ......
创建用户:create user 'oracle'@'localhost' identified by 'password';
mysql 8以上:alter user 'root'@'localhost' identified with mysql_native_password by 'newpassword';
mysql 8以下版本: 1.set password for 'root'@'localhost' password('newpassword');
2.update user set password="newpassword" where user="root";
3.mysqladmin -uroot -ppassword password newpassword;
上一篇: IOS开发(104)之程序执行状态更改
下一篇: ios MVC 结构问题