Linux MySQL 密碼修改

來源:互聯網
上載者:User

1)如果您沒有忘記密碼的情況下,可以通過UPDATE直接編輯user表來修改密碼:

進入資料庫mysql -u root
mysql> use mysql;
mysql> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root';
mysql> FLUSH PRIVILEGES;
或者
 /etc/init.d/mysql stop
 /etc/init.d/mysql start


2)如果您已經忘記密碼:
# /etc/init.d/mysql stop                                  1、結束當前正在啟動並執行mysql進程。
# /usr/bin/mysqld_safe --skip-grant-tables    2、用mysql安全模式運行並跳過許可權驗證。
# mysql -u root                                              3、重開一個終端以root身份登入mysql。


mysql> use mysql;                                          4、修改root使用者口令。
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A


Database changed
mysql> update user set Password = PASSWORD('root') where User ='root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3 Changed: 3 Warnings: 0


mysql> exit


# /etc/init.d/mysql restart                                5、結束mysql安全模式,用正常模式運行mysql。
mysql> update mysql.user set password=PASSWORD('新密碼') where User='root';
                                                                      6、試試你新修改的口令
mysql> flush privileges;
mysql> quit

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.