MySQL 5.7--------SSL連接最佳實戰

来源:http://www.cnblogs.com/bbs123-logs/archive/2017/06/29/7096902.html
-Advertisement-
Play Games

MySQL 5.7 SSL連接最佳實戰 1. 背景 * 在生產環境下,安全總是無法忽視的問題,資料庫安全則是重中之重,因為所有的數據都存放在資料庫中 * 當使用非加密方式連接MySQL資料庫時,在網路中傳輸的所有信息都是明文的,可以被網路中所有人截取,敏感信息可能被泄露。在傳送敏感信息(如密碼)時, ...


                                                                                         MySQL 5.7--------SSL連接最佳實戰

1. 背景

   * 在生產環境下,安全總是無法忽視的問題,資料庫安全則是重中之重,因為所有的數據都存放在資料庫中

   * 當使用非加密方式連接MySQL資料庫時,在網路中傳輸的所有信息都是明文的,可以被網路中所有人截取,敏感信息可能被泄露。在傳送敏感信息(如密碼)時,可以採用SSL連接的方式。

     *  版本小於5.7.6時按照 MySQL 5.6 SSL配置的方式進行。

 

2. MySQL 連接方式

 

   * socket連接

 

   * TCP非SSL連接

 

   * SSL安全連接

 

        * SSL + 密碼連接 [version > MySQL 5.7.5]

 

    * SSL + 密碼 + 密鑰連接

 

3. SSL 簡介

 

  * SSL指的是SSL/TLS,其是一種為了在電腦網路進行安全通信的加密協議。假設用戶的傳輸不是通過SSL的方式,那麼其在網路中以明文的方式進行傳輸,而這給別有用心的人帶來了可乘之機。所以,現在很多網站其實預設已經開啟了SSL功能,比如Facebook、Twtter、YouTube、淘寶等。

4. 環境 [ 關閉SeLinux ]

system 環境

[root@MySQL ~]# cat /etc/redhat-release  CentOS release 6.9 (Final) [root@MySQL ~]# uname -r   2.6.32-696.3.2.el6.x86_64   [root@MySQL ~]# getenforce  Disabled

MySQL 環境 [ MySQL 5.7安裝前面篇章已做詳細介紹 ]

 have_openssl 與 have_ssl 值都為DISABLED表示ssl未開啟

[root@MySQL ~]# mysql -p'123' 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 6 Server version: 5.7.18 MySQL Community Server (GPL)   Copyright (c) 2000, 2017, 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> select version(); +-----------+ | version() | +-----------+ | 5.7.18    | +-----------+ 1 row in set (0.00 sec)   mysql> show variables like 'have%ssl%'; +---------------+----------+ | Variable_name | Value    | +---------------+----------+ | have_openssl  | DISABLED | | have_ssl      | DISABLED | +---------------+----------+ 2 rows in set (0.02 sec)   mysql> show variables like 'port'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | port          | 3306  | +---------------+-------+ 1 row in set (0.01 sec)   mysql> show variables like 'datadir'; +---------------+-------------------+ | Variable_name | Value             | +---------------+-------------------+ | datadir       | /data/mysql_data/ | +---------------+-------------------+ 1 row in set (0.01 sec)

5. SSL配置

   *  利用自帶工具生成SSL相關文件

 

[root@MySQL ~]# /usr/local/mysql/bin/mysql_ssl_rsa_setup --datadir=/data/mysql_data Generating a 2048 bit RSA private key ..........................................................................+++ .....+++ writing new private key to 'ca-key.pem' ----- Generating a 2048 bit RSA private key .......................................................................................................................................................................+++ ...+++ writing new private key to 'server-key.pem' ----- Generating a 2048 bit RSA private key .....................+++ ...........................................+++ writing new private key to 'client-key.pem' -----  * 查看生成的SSL文件 [root@MySQL ~]# ls -l /data/mysql_data/*.pem -rw------- 1 root root 1679 Jun 24 20:54 /data/mysql_data/ca-key.pem -rw-r--r-- 1 root root 1074 Jun 24 20:54 /data/mysql_data/ca.pem -rw-r--r-- 1 root root 1078 Jun 24 20:54 /data/mysql_data/client-cert.pem -rw------- 1 root root 1675 Jun 24 20:54 /data/mysql_data/client-key.pem -rw------- 1 root root 1675 Jun 24 20:54 /data/mysql_data/private_key.pem -rw-r--r-- 1 root root  451 Jun 24 20:54 /data/mysql_data/public_key.pem -rw-r--r-- 1 root root 1078 Jun 24 20:54 /data/mysql_data/server-cert.pem -rw------- 1 root root 1675 Jun 24 20:54 /data/mysql_data/server-key.pem * 重啟 MySQL 服務 [root@MySQL ~]# /etc/init.d/mysqld restart Shutting down MySQL.. SUCCESS!  Starting MySQL. SUCCESS!   * 連接MySQL 查看SSL開啟狀態

     have_openssl 與 have_ssl 值都為YES表示ssl開啟成功

 

mysql> show variables like 'have%ssl%'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | have_openssl  | YES   | | have_ssl      | YES   | +---------------+-------+ 2 rows in set (0.03 sec)

6. SSL + 密碼連接測試

    * 創建用戶並指定 SSL 連接 [ MySQL 5.7後推薦使用create user 方式創建用戶 ]

 

mysql> create user 'ssl_test'@'%' identified by '123' require SSL; Query OK, 0 rows affected (0.00 sec) * 通過密碼連接測試 [ 預設採用SSL連接,需要指定不使用SSL連接 ] [root@MySQL ~]# mysql -h 192.168.60.129 -ussl_test -p'123' --ssl=0 mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 1045 (28000): Access denied for user 'ssl_test'@'192.168.60.129' (using password: YES)   * 通過 SSL + 密碼 連接測試

       SSL: Cipher in use is DHE-RSA-AES256-SHA 表示通過SSL連接

 

[root@MySQL ~]# mysql -h 192.168.60.129 -ussl_test -p'123'  --ssl mysql: [Warning] Using a password on the command line interface can be insecure. WARNING: --ssl is deprecated and will be removed in a future version. Use --ssl-mode instead. Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 12 Server version: 5.7.18 MySQL Community Server (GPL)   Copyright (c) 2000, 2017, 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> \s -------------- mysql  Ver 14.14 Distrib 5.7.18, for linux-glibc2.5 (x86_64) using  EditLine wrapper   Connection id:     12 Current database:  Current user:      [email protected] SSL:            Cipher in use is DHE-RSA-AES256-SHA Current pager:     stdout Using outfile:     '' Using delimiter:   ; Server version:        5.7.18 MySQL Community Server (GPL) Protocol version:  10 Connection:     192.168.60.129 via TCP/IP Server characterset:   latin1 Db     characterset:   latin1 Client characterset:   utf8 Conn.  characterset:  utf8 TCP port:      3306 Uptime:         7 min 34 sec   Threads: 1  Questions: 29  Slow queries: 0  Opens: 112  Flush tables: 1  Open tables: 105  Queries per second avg: 0.063 --------------

 

7. SSL + 密碼 + 密鑰連接

 

    * 創建用戶並指定 X509 [ SSL+密鑰 ] 連接 [ MySQL 5.7後推薦使用create user 方式創建用戶 ]

 

mysql> create user 'X509_test'@'%' identified by '123' require X509; Query OK, 0 rows affected (0.00 sec) * 通過密碼連接測試 [root@MySQL ~]# mysql -h 192.168.60.129 -uX509_test -p'123' --ssl=0 mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 1045 (28000): Access denied for user 'X509_test'@'192.168.60.129' (using password: YES) * 通過 SSL +密碼 連接測試 [root@MySQL ~]# mysql -h 192.168.60.129 -uX509_test -p'123' --ssl mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 1045 (28000): Access denied for user 'X509_test'@'192.168.60.129' (using password: YES)   * 通過 SSL + 密碼+密鑰連接測試

    SSL: Cipher in use is DHE-RSA-AES256-SHA 表示通過SSL連接

 

[root@MySQL ~]# mysql -h 192.168.60.129 -uX509_test -p'123' --ssl-cert=/data/mysql_data/client-cert.pem --ssl-key=/data/mysql_data/client-key.pem  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 21 Server version: 5.7.18 MySQL Community Server (GPL)   Copyright (c) 2000, 2017, 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> \s -------------- mysql  Ver 14.14 Distrib 5.7.18, for linux-glibc2.5 (x86_64) using  EditLine wrapper   Connection id:     21 Current database:  Current user:      [email protected] SSL:            Cipher in use is DHE-RSA-AES256-SHA Current pager:     stdout Using outfile:     '' Using delimiter:   ; Server version:        5.7.18 MySQL Community Server (GPL) Protocol version:  10 Connection:     192.168.60.129 via TCP/IP Server characterset:   latin1 Db     characterset:   latin1 Client characterset:   utf8 Conn.  characterset:  utf8 TCP port:      3306 Uptime:         18 min 27 sec   Threads: 1  Questions: 40  Slow queries: 0  Opens: 118  Flush tables: 1  Open tables: 111  Queries per second avg: 0.036 --------------
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 目錄: 一、介紹 二、node安裝 三、webstorm配置node環境 四、代碼介紹 五、如何使用 六、自定義功能變數名稱 七、其他 一、介紹 1、背景 日常工作中,跟後端商定好介面格式後;通常採用的開發方式,就是自己新建一個json文件,手動的模擬一批數據,進行ajax調用。 但是如果遇到後端提供的介面 ...
  • 浮動 會使當前標簽產生上浮效果,從而導致父標簽高度塌陷的問題 1. 給父元素指定高度 <div style="height:200px"> <div style="float:right"></div> </div> 簡單粗暴!高度不定時,如果內部高度大於父級時,容易產生問題 2. 在浮動元素後邊添 ...
  • appcan的 uexXmlHttpMgr.send 或者 appcan.ajax無法同步請求(沒有找到這個屬性),只能非同步,造成迴圈多次提交時由於延遲或網路堵塞等原因無法同步響應,導致提交順序混亂,執行完後回調錯誤或丟數據,如傳統方法(這裡已經引用的JQ包) 1 var data=[]; 2 va ...
  • 編寫存儲過程分頁(此處使用T-SQL) 1 CREATE PROC [dbo].[Common_PageList] 2 ( 3 @tab nvarchar(max), 表名 4 @strFld nvarchar(max), --欄位字元串 5 @strWhere varchar(max), --wh ...
  • https://github.com/saki4510t/UVCCamera UVCCamera 聽名字就知道使用UVC( USB VEDIO CLASS) 協議的通用類庫。linux原生支持,基本支持市面上所有免區USB攝像頭。 此開源庫包含JNI及android封裝的類庫。是目前最好用的安卓US... ...
  • 反編譯apk,在smali中註入一段自己的代碼。 試了幾個工具(apkdb、apktool、apkSign), 發現反編譯都可以,但是回編譯都不相容java1.8,導致回編譯成功,但apk沒有簽名,不能安裝; 在網上找了一些資料,都不行; 無奈只能換回java1.7,實測成功。 如果哪位有更好的方法 ...
  • UITableView這個iOS開發中永遠繞不開的UIView,那麼就不可避免的要在多個頁面多種場景下反覆摩擦UITableView,就算是剛跳進火坑不久的iOS Developer也知道實現UITableView的數據源dataSource和代理delegate,寫出一個UITableView也就 ...
  • 一, 代碼。 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. //獲得現在的時間 [self currentTime ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...