JCX
JCX

Reputation: 1439

How to enable SSL connection on MySQL server in Windows

How do I enable SSL on MySQL server in Windows? I have downloaded OpenSSL but don't know how to get it work in Windows since all the commands are in UNIX shell. help anyone?

Upvotes: 1

Views: 4966

Answers (3)

Ukuser32
Ukuser32

Reputation: 2189

You want to look at http://dev.mysql.com/doc/refman/5.0/en/creating-ssl-certs.html and then the links on the right hand side.

To work with openssl in Windows - locate where it is and then go Start > Run > (type) CMD

Type: cd PATH_TO_OPENSSL_FOLDER Type: openssl ..... commands here .....

It will all depend on if you are purchasing an SSL certificate or creating a self signed one. Self signed are free and simple but purchasing one is deemed more secure / trusted.

Upvotes: 0

ATilara
ATilara

Reputation: 531

XAMPP has it in xampp\PHP\extras\openssl

Upvotes: 0

d-_-b
d-_-b

Reputation: 6773

On the OpenSSL website, there is a page for binary packages: http://www.openssl.org/related/binaries.html

I think that is what you want for Windows.

I can't say how good it will work. Also please clarify what you you want to do. You cannot "create SSL for MySQL in Windows". Do you want MySQL to have SSL encrypted connections perhaps?

Upvotes: 1

Related Questions