您好,登錄后才能下訂單哦!
修改密碼
root修改自己密碼
方法一:
方法二:
在Mysql中
update mysql.user set authentication_string=password('Qianfeng123!') where user='root' and host='localhost';
方法三:
給哪個用戶設置密碼,你要在哪個用戶下執行
set password=password("new_password'')
上面方法將會在后面的版本remove,使用下面方法
SET PASSWORD='new_password'; 直接設置密碼
root修改其他用戶密碼
方法一:
mysql> SET PASSWORD FOR user3@'localhost'=password('new_password');
上面的方法會在將來remove,使用下面的方法:
mysql> SET PASSWORD FOR user3@'localhost'='new_password';
方法二:
UPDATE mysql.user SET authentication_string=password('new_password')
WHERE user='user3' AND host='localhost';
普通用戶修改自己密碼
mysql> SET password=password('new_password');
mysql> select * from mysql.user\G
mysql> alter user 'wing'@'localhost' identified by 'Qianfeng123!@';
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。