mysql如何設定密碼

谷應泰發表於2018-05-30
                <link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/htmledit_views-0a60691e80.css">
        <div class="htmledit_views">

新裝的mysql預設是沒有密碼的,下面我們直接root使用者進入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;

java技術交流群:251303758


相關文章