mysql_config_editor元件
mysql_config_editor元件可以給指定的連線和密碼生成一個加密檔案 .mylogin.cnf,預設位於當前使用者home目錄下。透過該檔案可以使用mysql,mysqladmin等直接 免密登入,避免明文密碼出現在指令碼和/etc/my.cnf配置檔案中。
官方文件
https://dev.mysql.com/doc/refman/5.7/en/mysql-config-editor.html
檢視當前login path 檔案( .mylogin.cnf)內容
# mysql_config_editor print --all
建立一個login到 login path 檔案,第一次需輸入密碼
# mysql_config_editor set --login-path=myroot3306 --user=root --socket=/var/lib/mysql/mysql.sock --password Enter password:
再次檢視 login path 檔案
# mysql_config_editor print --all [myroot3306] user = root password = ***** socket = /var/lib/mysql/mysql.sock]
OS級別檢視
# ll ~/.mylogin.cnf -rw------- 1 root root 152 Apr 20 16:46 /root/.mylogin.cnf # cat ~/.mylogin.cnf 是一些加密內容,亂碼
測試登入
# mysql --login-path=myroot3306
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 18914 Server version: 5.7.21-log 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 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>
刪除一個login
# mysql_config_editor remove --login-path=myroot3306 # mysql_config_editor print --all
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25583515/viewspace-2768973/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mysql_config_editorMySql
- mysql_config_editor 配置工具MySql
- mysql_config_editor用法舉例MySql
- mysql_config_editor使用簡介MySql
- mysql_config_editor安全登入工具學習MySql
- 使用mysql_config_editor 建立一個加密登入MySql加密
- MySQL實現無密碼登入(mysql_config_editor)MySql密碼
- MySQL 通過mysql_config_editor更安全的登入資料庫MySql資料庫
- mysql之 mysql_config_editor/login-path 登入密碼保護MySql密碼
- Vue元件、元件傳值和元件插槽Vue元件
- Angular元件——父元件呼叫子元件方法Angular元件
- React 快速上手 - 06 元件設計 容器元件、展示元件、操作元件React元件
- angular自定義元件-UI元件篇-switch元件Angular元件UI
- 受控元件與非受控元件元件
- 元件元件
- vue元件巢狀之 - 父元件向子元件傳值Vue元件巢狀
- rest認證元件,許可權元件,頻率元件,url註冊器,響應器元件,分頁器元件REST元件
- react篇章-React 元件-複合元件React元件
- 翻譯:展示元件和容器元件元件
- Angular元件-檔案上傳元件Angular元件
- 元件emit資料至父元件元件MIT
- Flutter元件學習(一)—— Text元件Flutter元件
- React受控元件和非受控元件React元件
- 子元件向父元件傳參元件
- 父元件向子元件傳值元件
- 聊聊前端 UI 元件:元件體系前端UI元件
- 聊聊前端 UI 元件:元件設計前端UI元件
- Angular元件——元件生命週期(一)Angular元件
- Angular元件——元件生命週期(二)Angular元件
- react父子元件,兄弟元件,爺爺到孫子元件筆記React元件筆記
- 【vue元件通訊①】父元件向子元件通訊propsVue元件
- sketchup 動態元件 在上級元件呼叫下級元件屬性元件
- vue中子元件傳遞父元件$emitVue元件MIT
- Vue 動態元件 & 非同步元件原理Vue元件非同步
- 讓Vue元件變成Powerful的元件Vue元件
- 子元件給父元件傳資料元件
- React之受控元件和非受控元件React元件
- vue實戰-元件編寫-todolist元件Vue元件