Installing OpenSSL
- Download OpenSSL - http://www.openssl.org
- Linux command : [zcat 0.96l.tar.gz | tar xvf -]
- Linux command : [./config]
- Linux command : [make]
- Linux command : [make install]
Installing MySQL
- Download MySQL - http://www.mysql.com
- Linux command : [./configure --with -vio --with -openssl]
- Linux command : [make]
- Linux command : [make install]
- Note: Please ensure if MySQL Server supports OpenSSL using query
statement: [SHOW VARIABLES LIKE 'have_openssl';] - Returns value = YES
Installing PostgreSQL
- Download PostgreSQL - http://www.postgresql.org
- Linux command : [./configure --with-openssl]
- Linux command : [gmake]
- Linux command : [gmake install]
- Note: Please ensure if PostgreSQL Server supports OpenSSL using query
statement: [SHOW ssl;] - Returns value = ON
See also:
Step 2: Setting up SSL Certificate for MySQL/PostgreSQL