【原創】MySQL 5.6 新增的兩個密碼安全性原則體驗

來源:互聯網
上載者:User

 隨著MySQL 5.6 的GA, MySQL在一些細節上越來越美。 今天來體驗下兩個安全驗證方面的細節提升。


1. mysql_config_edit 工具。 可以用來加密使用者的密碼,增強資料庫安全。  使用方法: 
 
  1. t@ytt-centos6-3 ~]$ mysql_config_editor set --login-path=itsmine --host=localhost --user=ytt --password 
  2. Enter password:  
  3. [ytt@ytt-centos6-3 ~]$ mysql --login-path=itsmine -S /tmp/mysql3307.sock  
  4. Welcome to the MySQL monitor.  Commands end with ; or \g. 
  5. ... 
  6. mysql> select user(); 
  7. +---------------+ 
  8. | user()        | 
  9. +---------------+ 
  10. | ytt@localhost | 
  11. +---------------+ 
  12. 1 row in set (0.00 sec) 
  13.  
  14. mysql> exit 
  15. Bye 
mysql_config_edit 加密後的資料儲存在使用者主目錄下: 
 
  1. [ytt@ytt-centos6-3 ~]$ file .mylogin.cnf  
  2. .mylogin.cnf: data 
  2. 密碼強度驗證外掛程式   查看是否安裝有此外掛程式 
 
  1. mysql> show plugins; 
  2. +----------------------------+----------+--------------------+----------------------+-------------+ 
  3. | Name                       | Status   | Type               | Library              | License     | 
  4. +----------------------------+----------+--------------------+----------------------+-------------+ 
  5. | binlog                     | ACTIVE   | STORAGE ENGINE     | NULL                 | PROPRIETARY | 
  6. ... 
  7. | validate_password          | ACTIVE   | VALIDATE PASSWORD  | validate_password.so | PROPRIETARY | 
  8. +----------------------------+----------+--------------------+----------------------+-------------+ 
  9. 45 rows in set (0.00 sec) 
  10.  
  11. mysql>  
 現在來設定新的密碼:  
 
  1. mysql> set password for ytt_new@'localhost'= password('2lOp23dll&D'); 
  2. Query OK, 0 rows affected (0.00 sec) 
  3.  
  4. mysql> flush privileges; 
  5. Query OK, 0 rows affected (0.00 sec) 
  6.  
  7. mysql>  

本文出自 “上帝,咱們不見不散!” 部落格,請務必保留此出處http://yueliangdao0608.blog.51cto.com/397025/1175270

相關文章

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.