Difference between revisions of "Secure MySQL Connection"

Line 28: Line 28:
 
openssl rsa -in server-key.pem -out server-key.pem
 
openssl rsa -in server-key.pem -out server-key.pem
 
openssl x509 -req -in server-req.pem -days 9000  -CA ca-cert.pem -CAkey ca-key.pem -set_serial 01 > server-cert.pem</source>
 
openssl x509 -req -in server-req.pem -days 9000  -CA ca-cert.pem -CAkey ca-key.pem -set_serial 01 > server-cert.pem</source>
 +
====Windows====
 +
Open a command prompt as administrator. Before executing these commands replace C:\OpenSSL\bin\ with the OpenSSL installation folder.
 +
<source lang="bash">cd \
 +
mkdir certificates
 +
cd certificates
 +
C:\OpenSSL\bin\openssl genrsa 2048 > ca-key.pem
 +
C:\OpenSSL\bin\openssl req -new -x509 -nodes -days 9000 -key ca-key.pem > ca-cert.pem
 +
C:\OpenSSL\bin\openssl req -newkey rsa:2048 -days 9000 -nodes -keyout server-key.pem > server-req.pem
 +
C:\OpenSSL\bin\openssl rsa -in server-key.pem -out server-key.pem
 +
C:\OpenSSL\bin\openssl x509 -req -in server-req.pem -days 9000  -CA ca-cert.pem -CAkey ca-key.pem -set_serial 01 > server-cert.pem</source>

Revision as of 02:17, 17 December 2012

Overview

MySQL supports secure (encrypted) connections between MySQL clients and the server using the Secure Sockets Layer (SSL) protocol. This article explains how to configure your MySQL server and TCAdmin.

How to configure the MySQL Server

The following instructions are provided for your convenience. We do not provide support for configuring ssl on your MySQL server.

For detailed instructions read the MySQL reference manual: http://dev.mysql.com/doc/refman/5.0/en/creating-ssl-certs.html

Install OpenSSL

To know if your server already has OpenSSL installed execute "openssl" from ssh or from a command prompt. If you see "OpenSSL>" it is already installed.

CentOS 5/6, Fedora 15, Redhat 5

yum install openssl

Debian 6, Ubuntu 10/11/12

apt-get install openssl

Windows

OpenSSL for Windows can be downloaded from http://slproweb.com/products/Win32OpenSSL.html

Create the Server Certificates

Important: Execute the following commands line by line. Don't execute them all at once.

Linux

cd /home/tcadmin/Database
mkdir certificates
cd certificates
openssl genrsa 2048 > ca-key.pem
openssl req -new -x509 -nodes -days 9000 -key ca-key.pem > ca-cert.pem
openssl req -newkey rsa:2048 -days 9000 -nodes -keyout server-key.pem > server-req.pem
openssl rsa -in server-key.pem -out server-key.pem
openssl x509 -req -in server-req.pem -days 9000  -CA ca-cert.pem -CAkey ca-key.pem -set_serial 01 > server-cert.pem

Windows

Open a command prompt as administrator. Before executing these commands replace C:\OpenSSL\bin\ with the OpenSSL installation folder.

cd \
mkdir certificates
cd certificates
C:\OpenSSL\bin\openssl genrsa 2048 > ca-key.pem
C:\OpenSSL\bin\openssl req -new -x509 -nodes -days 9000 -key ca-key.pem > ca-cert.pem
C:\OpenSSL\bin\openssl req -newkey rsa:2048 -days 9000 -nodes -keyout server-key.pem > server-req.pem
C:\OpenSSL\bin\openssl rsa -in server-key.pem -out server-key.pem
C:\OpenSSL\bin\openssl x509 -req -in server-req.pem -days 9000  -CA ca-cert.pem -CAkey ca-key.pem -set_serial 01 > server-cert.pem
Retrieved from "https://help.tcadmin.com/index.php?title=Secure_MySQL_Connection&oldid=965"