gpfdists:// Protocol
The gpfdists:// protocol is a secure version of the gpfdist:// protocol.
To use it, you run the gpfdist utility with the --ssl option. When specified in a URI, the gpfdists:// protocol enables encrypted communication and secure identification of the file server and the WarehousePG to protect against attacks such as eavesdropping and man-in-the-middle attacks.
gpfdists implements SSL security in a client/server scheme with the following attributes and limitations:
Client certificates are required.
Multilingual certificates are not supported.
A Certificate Revocation List (CRL) is not supported.
The
TLSv1protocol is used with theTLS_RSA_WITH_AES_128_CBC_SHAencryption algorithm.SSL parameters cannot be changed.
SSL renegotiation is supported.
The SSL ignore host mismatch parameter is set to
false.Private keys containing a passphrase are not supported for the
gpfdistfile server (server.key) and for the WarehousePG (client.key).Issuing certificates that are appropriate for the operating system in use is the user's responsibility. Generally, converting certificates as shown in https://www.sslshopper.com/ssl-converter.html is supported.
Note A server started with the
gpfdist --ssloption can only communicate with thegpfdistsprotocol. A server that was started withgpfdistwithout the--ssloption can only communicate with thegpfdistprotocol.The client certificate file,
client.crtThe client private key file,
client.key
Use one of the following methods to invoke the gpfdists protocol.
- Run
gpfdistwith the--ssloption and then use thegpfdistsprotocol in theLOCATIONclause of aCREATE EXTERNAL TABLEstatement. - Use a
gploadYAML control file with theSSLoption set to true. Runninggploadstarts thegpfdistserver with the--ssloption, then uses thegpfdistsprotocol.
About the Required Certificate Files
The settings of the verify_gpfdists_cert server configuration parameter (default value true) and the gpfdist --ssl_verify_peer <boolean> option (default value on) control whether SSL certificate authentication is enabled when WarehousePG communicates with the gpfdist utility to either read data from or write data to an external data source. These settings also determine which of the following certificate files must reside in the $PGDATA/gpfdists directory on each WarehousePG segment:
- The client certificate file,
client.crt - The client private key file,
client.key - The trusted certificate authorities,
root.crt
The certificate files required for each verify_gpfdists_cert and --ssl_verify_peer setting combination are identified in the table below:
| verify_gpfdists_cert | --ssl_verify_peer | Required Certificate Files |
|---|---|---|
| on | on | client.keyclient.crtroot.crt |
| on | off | root.crt |
| off | on | client.keyclient.crt |
| off | off | N/A |
