安装 OpenSSL 及 MySQL 或 PostgreSQL

Navicat

安装 OpenSSL 及 MySQL 或 PostgreSQL

安装 OpenSSL

  1. 下载 OpenSSL - http://www.openssl.org
  2. Linux 命令:[zcat 0.96l.tar.gz | tar xvf -]
  3. Linux 命令:[./config]
  4. Linux 命令:[make]
  5. Linux 命令:[make install]

安装 MySQL

  1. 下载 MySQL - http://www.mysql.com
  2. Linux 命令:[./configure --with -vio --with -openssl]
  3. Linux 命令:[make]
  4. Linux 命令:[make install]
    注意:请确保 MySQL 服务器支持 OpenSSL 使用查询语句:[SHOW VARIABLES LIKE 'have_openssl';] - 返回值 = YES

安装 PostgreSQL

  1. 下载 PostgreSQL - http://www.postgresql.org
  2. Linux 命令:[./configure --with-openssl]
  3. Linux 命令:[gmake]
  4. Linux 命令:[gmake install]
    注意:请确保 PostgreSQL 服务器支持 OpenSSL 使用查询语句:[SHOW ssl;] - 返回值 = ON