From 3d1fc99353557aa42c14e760e01774fd624d7805 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Mon, 11 Apr 2016 21:41:32 -0700 Subject: [PATCH] Adding not in docs about connecting to dbs over SSL --- docs/installation.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/installation.rst b/docs/installation.rst index 57cdc4678..075ea2299 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -197,6 +197,22 @@ JSON blob described above, or you can use a database user name to connect to the database that matches the schema name you are interested it. +SSL Access to databases +----------------------- +This example worked with a MySQL database that requires SSL. The configuration +may differ with other backends. This is what was put in the ``extra`` +parameter :: + { + "metadata_params": {}, + "engine_params": { + "connect_args":{ + "sslmode":"require", + "sslrootcert": "/path/to/my/pem" + } + } + } + + Druid -----