首頁 >資料庫 >mysql教程 >如何設定mysql的登入密碼?

如何設定mysql的登入密碼?

青灯夜游
青灯夜游原創
2020-09-30 11:19:1711704瀏覽

設定方法:1、使用「set password =password('你的密碼');」指令;2、使用「update user set password=password('你的密碼') where user='root ';”命令。

如何設定mysql的登入密碼?

mysql設定密碼

#有很多方法:

1、用root進入mysql後

mysql>set password =password('你的密码');
mysql>flush privileges;

2、使用GRANT語句

mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '你的密码'with grant option ; 
mysql>flush privileges;

3、進入mysql庫修改user表

mysql>use mysql;
mysql>update user set password=password('你的密码') where user='root';
mysql>flush privileges;

推薦教學:mysql影片教學

#

以上是如何設定mysql的登入密碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn