RHEL or Fedora下清除MySQL密碼

來源:互聯網
上載者:User

1.先以root使用者登入系統;

2.關閉MySQL服務或進程:service mysqld stop / killall mysqld;

3.特權啟動MySQL: /usr/local/mysql/bin/mysqld_safe --skip-grant-tables & or mysqld_safe --skip-grant-tables --skip-networking & (註:參數--skip-grant-tables為跳過授權表;--skip-networking為不監聽TCP/IP串連);

4.然後可以不要求輸入密碼進入MySQL:mysql -u root -p(要求輸入密碼時直接斷行符號即可);

mysql>use mysql;

mysql>update user set password=password('new pw') where user='root' (注:'new pw' 就是你的新密碼,其它照抄;

另一種寫法:update mysql.user set password=password('new pw') where user='root';

5.更新下:

mysql>flush privileges;

mysql>quit;

6.結束剛啟動過的MYSQL進程:killall mysqld or killall -9 mysqld.

7.正常啟動MYSQL: service mysql start

8.用'new pw'登入:mysql -u root -p.

OK......

>>同時也可以這樣做:

首先,修改MySQL的登入設定:
# vi /etc/my.cnf
在[mysqld]的段中加上一句:skip-grant-tables
例如:
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-grant-tables
儲存並且退出vi。

然後,重新啟動mysqld,進去修改密碼,同上述方法;

最後,將MySQL的登入設定修改回來:
# vi /etc/my.cnf
將剛才在[mysqld]的段中加上的skip-grant-tables刪除
儲存並且退出vi。

再次登入MySQL,一樣OK......

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.