真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql忘了root密碼的解決方法

這篇文章將為大家詳細講解有關(guān)MySQL忘了root密碼的解決方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務,包含不限于成都網(wǎng)站制作、網(wǎng)站建設(shè)、銀川網(wǎng)絡(luò)推廣、小程序設(shè)計、銀川網(wǎng)絡(luò)營銷、銀川企業(yè)策劃、銀川品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務,您的肯定,是我們最大的嘉獎;成都創(chuàng)新互聯(lián)公司為所有大學生創(chuàng)業(yè)者提供銀川建站搭建服務,24小時服務熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com

修改配置文件my.cnf,在配置文件[mysqld]下添加skip-grant-tables,重啟MySQL服務即可免密碼登錄

其中--skip-grant-tables 選項前面曾經(jīng)介紹過,意思是啟動 MySQL 服務的時候跳過權(quán)限表認證。 啟動后,連接到 MySQL 的 root 將不需要口令。

# SERVER SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by the MySQL Server. Make sure that
# you have installed the server correctly (see above) so it reads this 
# file.
#
[mysqld]

skip-grant-tables

用空密碼的 root 用戶連接到 MySQL,并且更改 root 口令:

[root@localhost mysql]# mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 53
Server version: 5.0.41-community-log MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123';  
 ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement


mysql> update user set authentication_string = NULL where user = 'root';
Query OK, 1 row affected (0.00 sec)

上面是先用grant的方式修改root密碼,但是由于使用了配置了skip-grant-tables 選項,使用“alter user”命令更改密碼失敗,直

接更新 user 表的 authentication_string字段后更改密碼成功。

到my.cnf 中刪除skip-grant-tables選項,然后直接用mysql -uroot免密碼登錄后,在執(zhí)行如下語句重設(shè)密碼:

mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123';

關(guān)于mysql忘了root密碼的解決方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


新聞標題:mysql忘了root密碼的解決方法
瀏覽路徑:http://weahome.cn/article/pjopcg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部