赞
踩
一、命令修改数据库的密码
1、使用命令修改数据库的密码。
mysqladmin -uuser -p123456 password 'USER@123'
然后赋予数据库用户,127.0.0.1本地和远程登录权限。
- mysql -e "grant all privileges on *.* to 'user'@'%' identified by 'USER@123';"
- mysql -e "grant all privileges on *.* to 'user'@'127.0.0.1' identified by 'USER@123';"
2、也可以使用update命令更新密码:
例如,我们要将用户名为user的用户的密码修改为USER@123,可以通过以下代码完成:
进入Mysql界面,用 use mysql; 进入mysql库。
然后通过以下命令更新密码。
update user set password='USER@123' where user_name='user';
通过以上步骤,我们就可以完成MySQL数据库中的user表Update操作。
二、root空口令设置密码
进入Mysql界面,用 use mysql; 进入mysql库。
然后通过以下命令更新密码。
update mysql.user set authentication_string=password('Root@123') where user='root' and Host = 'localhost';
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。