1. 程式人生 > >修改MySQL資料庫密碼

修改MySQL資料庫密碼

第一種方法 

進入cmd 

按Windows+x鍵  點選windows PwerShell進入cmd

mysqladmin -u root -p password 新密碼

Enter password:輸入你的舊密碼

例如下面這樣

我這裡設定的新密碼是123456

第二種方法是

先進入 資料庫

use mysql;

update use set authentication_string = password('123456') where use = 'root' and Host = 'localhost';

這裡新密碼依舊是123456  用時候只需要更換123456即可