国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

如何修改Linux服務器中的MySQL數據庫密碼

瀏覽:27日期:2023-09-05 20:31:47
目錄修改Linux服務器中的MySQL數據庫密碼1.知道mysql的密碼情況下2.不知道mysql的密碼情況下mysql5.7的密碼修改錯誤問題:ERROR 1054 (42S22): Unknown column 'password' in 'field list'的解決總結修改Linux服務器中的MySQL數據庫密碼1.知道mysql的密碼情況下

通過登錄mysql系統,

mysql -uroot -pEnter password: 【輸入原來的密碼】mysql>use mysql;

查看下自己mysql的版本,注意不同的版本修改密碼的方式會有所不同

mysql>select version();

根據自己的版本從下面的方式中,選擇一種進行修改密碼即可

5.7以前

mysql>update user set password=password(“123456”) where user=‘root';

5.7版本 user表沒有了password字段,要用authentication_string代替

mysql>update user set authentication_string=password(“123456”) where user=‘root';

8.0以上版本 注意密碼要有數字,大小寫字母,和特殊符號,要不密碼會驗證不通過

mysql>ALTER USER ‘root' IDENTIFIED BY ‘123456@Test';

刷新權限(必須步驟)

mysql> flush privileges;mysql> exit;

修改完后要記得重啟下mysql服務,讓修改生效

service mysqld restart2.不知道mysql的密碼情況下

不知道mysql密碼的情況下,在安全模式下啟動mysql,不用輸入密碼就可以登錄進去,&表示在后臺運行,不再后臺運行的話,就要再打開一個終端。

mysqld_safe --skip-grant-tables &

或者你可以

輸入:vi /etc/my.cnf 回車。在這個文件中的最后一行輸入:skip-grant-tables

然后重啟mysql服務 service mysqld restart 進入到安全模式,修改完密碼后記得再刪除掉這行數據重啟下

mysql -uroot -p

然后提示你輸入原密碼,安全模式下直接回車就可以進入mysql數據庫了;

mysql>use mysql;

后面的步驟跟上面一樣了,根據自己的版本選擇修改方式

5.7以前

mysql>update user set password=password(“123456”) where user=‘root';

5.7版本 user表沒有了password字段,要用authentication_string代替

mysql>update user set authentication_string=password(“123456”) where user=‘root';

8.0以上版本 注意密碼要有數字,大小寫字母,和特殊符號,要不密碼會驗證不通過

mysql>ALTER USER ‘root' IDENTIFIED BY ‘123456@Test';

刷新權限(必須步驟)

mysql> flush privileges;mysql> exit;

修改完后要記得重啟下mysql服務,讓修改生效

service mysqld restartmysql5.7的密碼修改錯誤問題:ERROR 1054 (42S22): Unknown column 'password' in 'field list'的解決

本意向修改一個用戶的密碼,網上搜到的命令為如下

mysql> update user set password=password(“新密碼”) where user=”用戶名”;

執行后報錯:

ERROR 1054(42S22) Unknown column 'password' in ‘field list’

錯誤的原因是 5.7版本下的mysql數據庫下已經沒有password這個字段了,password字段改成了authentication_string

所以請使用一下命令:

E:\app\mysql\mysql-5.7.22-winx64\bin>mysql -uroot -pmysql123 # 先進入數據庫mysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 8Server version: 5.7.22 MySQL Community Server (GPL) Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> use mysql; # 使用mysqlDatabase changedmysql> select User from user; # 此處為查詢用戶命令+---------------+| User |+---------------+| root || root || mysql.session || mysql.sys || root |+---------------+5 rows in set (0.01 sec) mysql> update mysql.user set authentication_string=password('mysql') where user='root'; # 更新密碼Query OK, 3 rows affected, 1 warning (0.00 sec)Rows matched: 3 Changed: 3 Warnings: 1 mysql> flush privileges; # 數據刷新Query OK, 0 rows affected (0.00 sec) mysql> quit # 退出Bye E:\app\mysql\mysql-5.7.22-winx64\bin>mysql -uroot -pmysql # 再次進入mysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 9Server version: 5.7.22 MySQL Community Server (GPL) Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>

跟我這樣設置,就可以了,大家自己設置自己的密碼就行

總結

以上為個人經驗,希望能給大家一個參考,也希望大家多多支持好吧啦網。

標簽: MySQL 數據庫
主站蜘蛛池模板: 洞头县| 扶沟县| 德钦县| 山丹县| 句容市| 神木县| 隆昌县| 石门县| 灵璧县| 鄢陵县| 虎林市| 内乡县| 安西县| 内乡县| 清徐县| 湘西| 教育| 衡阳市| 郑州市| 克什克腾旗| 枞阳县| 太原市| 万荣县| 阿尔山市| 沾益县| 波密县| 枣阳市| 平山县| 蓝山县| 阆中市| 同心县| 新蔡县| 青阳县| 静宁县| 博兴县| 临湘市| 阿荣旗| 泸西县| 乌海市| 酉阳| 保山市|