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

溫馨提示×

溫馨提示×

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

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

Linux怎樣查看mysql密碼

發布時間:2022-02-06 18:09:46 來源:億速云 閱讀:5501 作者:柒染 欄目:開發技術

Linux怎樣查看mysql密碼,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

相信很多小伙伴都經歷過忘記密碼,如果在Linux下忘記MySQL密碼該怎么辦?

Linux查看mysql密碼具體方法。

查看默認密碼

grep ‘temporary password’ /var/log/mysqld.log

或者

cat /var/log/mysqld.log | grep ‘temporary password’
 [root@VM_0_11_centos ~]# grep 'temporary password' /var/log/mysqld.log
 2020-05-07T16:57:52.623306Z 1 [Note] A temporary password is generated for root@localhost: Ukyool6&htfu

修改密碼

初次修改密碼時,需要注意的是密碼中需要含有字母、數字、特殊字符 (要含有大小字母且長度不能小于8)

 [root@VM_0_11_centos ~]# mysql -uroot -p
 Enter password:
 Welcome to the MySQL monitor.  Commands end with ; or \g.
 Your MySQL connection id is 1721
 Server version: 5.7.30 MySQL Community Server (GPL)
 
 Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
 
 Oracle is a registered trademark of Oracle Corporation and/or its
 affiliates. Other names may be trademarks of their respective
 owners.
 
 Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
 
 mysql> show databases;
 ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
 mysql> alter user root@localhost identified by 'root!@#123';
 ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
 mysql>  SHOW VARIABLES LIKE 'validate_password%';
 ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
 mysql> alter user root@localhost identified by 'Root!@#123';
 Query OK, 0 rows affected (0.00 sec)
 
 mysql> SHOW VARIABLES LIKE 'validate_password%';
 +--------------------------------------+--------+
 | Variable_name                        | Value  |
 +--------------------------------------+--------+
 | validate_password_check_user_name    | OFF    |
 | validate_password_dictionary_file    |        |
 | validate_password_length             | 8      |
 | validate_password_mixed_case_count   | 1      |
 | validate_password_number_count       | 1      |
 | validate_password_policy             | MEDIUM |
 | validate_password_special_char_count | 1      |
 +--------------------------------------+--------+
 7 rows in set (0.01 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
 mysql> select Host,User from user;
 +-----------+---------------+
 | Host      | User          |
 +-----------+---------------+
 | localhost | mysql.session |
 | localhost | mysql.sys     |
 | localhost | root          |
 +-----------+---------------+
 3 rows in set (0.00 sec)
 
 mysql>

關于 mysql 密碼策略相關參數; 

1)、validate_password_length 固定密碼的總長度;

2)、validate_password_dictionary_file 指定密碼驗證的文件路徑; 

3)、validate_password_mixed_case_count 整個密碼中至少要包含大/小寫字母的總個數; 

4)、validate_password_number_count 整個密碼中至少要包含阿拉伯數字的個數; 

5)、validate_password_policy 指定密碼的強度驗證等級,默認為 MEDIUM; 

關于 validate_password_policy 的取值: 

0/LOW:只驗證長度; 

1/MEDIUM:驗證長度、數字、大小寫、特殊字符; 

2/STRONG:驗證長度、數字、大小寫、特殊字符、字典文件; 

6)、validate_password_special_char_count 整個密碼中至少要包含特殊字符的個數;

看完上述內容,你們掌握Linux怎樣查看mysql密碼的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

鹿泉市| 望城县| 亚东县| 阿巴嘎旗| 宿迁市| 瑞昌市| 娄烦县| 祥云县| 泰顺县| 亚东县| 杭锦后旗| 那坡县| 丰镇市| 石城县| 绵竹市| 阿克苏市| 南安市| 湘阴县| 德昌县| 西安市| 和田县| 南木林县| 黔西| 奇台县| 册亨县| 三台县| 招远市| 三门峡市| 监利县| 东阳市| 杭锦后旗| 周至县| 含山县| 吉木萨尔县| 抚顺市| 武威市| 浦东新区| 南涧| 勃利县| 黄石市| 宾川县|