在使用CMD命令行方式連接mysql數(shù)據(jù)庫時(shí),有時(shí)候我們需要修改數(shù)據(jù)庫的密碼。下面介紹一下怎樣使用CMD修改mysql數(shù)據(jù)庫密碼。
首先,使用CMD打開mysql的客戶端:
mysql -u root -p
輸入當(dāng)前數(shù)據(jù)庫的密碼:
Enter password:
進(jìn)入mysql后,在mysql數(shù)據(jù)庫中執(zhí)行以下命令修改密碼:
mysql>use mysql; mysql>update user set authentication_string=password('newpassword') where user='root'; mysql>flush privileges; mysql>quit;
其中,將“newpassword”替換為新密碼,然后執(zhí)行“flush privileges”刷新權(quán)限。
在CMD中重新登錄mysql,使用以下命令登錄:
mysql -u root -p
輸入新密碼即可成功進(jìn)入mysql數(shù)據(jù)庫。