中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL5.7忘記root密碼的處理方式

發布時間:2021-09-18 14:21:55 來源:億速云 閱讀:481 作者:chen 欄目:MySQL數據庫

本篇內容主要講解“MySQL5.7忘記root密碼的處理方式”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“MySQL5.7忘記root密碼的處理方式”吧!

MySQL忘記root密碼,而且不能使用操作系統認證直接進入數據庫修改密碼時,需要重置root密碼。
1、在配置文件/etc/my.cnf添加skip-grant-tables一行,跳過密碼驗證。
2、重啟mysql數據庫主進程# /etc/init.d/mysqld restart(也可以直接先停掉MySQL進程后使用skip-grant-tables參數重啟MySQL)
3、登錄數據庫修改密碼。
mysql> update user set authentication_string=password('') where user='root' and host='localhost';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> exit
這里需要修改的字段是authentication_string,這點和之前的版本不同。
4、這個時候,如果你設置的密碼太簡單,則在數據庫執行任何命令都會報類似如下錯誤:
mysql> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
mysql> show database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database' at line 1
mysql> update user set authentication_string=password('mysql') where user='root' and host='localhost';
ERROR 1046 (3D000): No database selected
mysql> use mysql;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
5、注意:如果只想設置簡單密碼需要修改兩個全局參數:
mysql> set global validate_password_policy=0;
mysql> set global validate_password_length=1;
mysql> set global validate_password_policy=0;
       Query OK, 0 rows affected (0.00 sec)
mysql> set global validate_password_length=1;
       Query OK, 0 rows affected (0.00 sec)
mysql> set password=password("mysql");
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> use mysql;
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
-------------------------End--------------------------------------------------------------------------

到此,相信大家對“MySQL5.7忘記root密碼的處理方式”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蚌埠市| 湛江市| 历史| 辉南县| 甘谷县| 婺源县| 安新县| 江安县| 徐水县| 宝丰县| 略阳县| 图们市| 沙雅县| 西乌珠穆沁旗| 巴中市| 房产| 彩票| 罗城| 资讯| 崇信县| 曲松县| 措勤县| 玉溪市| 洛隆县| 渝北区| 菏泽市| 黄山市| 虹口区| 张家川| 江陵县| 来安县| 山阴县| 武胜县| 凌海市| 陕西省| 桐城市| 千阳县| 武邑县| 西充县| 台北县| 岢岚县|