Configuring TLS for ADO.NET
You can optionally use TLS to secure communication between your ADO.NET application and Vertica.
You can optionally use TLS to secure communication between your ADO.NET application and Vertica.
Prerequisites
Before you configure ADO.NET for TLS, you must configure client-server TLS, setting the TLSMODE to ENABLE
. Mutual mode (TRY_VERIFY
or higher) is not supported for ADO.NET.
Linux
The following procedure configures TLS on a Linux system:
Note
The paths for these certificates might vary between distributions.- On the client filesystem, create the file
/etc/ssl/certs/server.crt
with the certificate text of the server certificate. You can retrieve the certificate text from a certificate in Vertica by querying the CERTIFICATES system table. - Run the following command to verify that the certificate file is valid. If it is valid, the command outputs information about the certificate:
- On the client filesystem, create the file
/usr/local/share/ca-certificates/root.crt
with the certificate text of the CA certificate. - Verify that the certificate was issued by the CA certificate:
- Update the certificate store:
Windows
The Vertica ADO.NET driver uses the TLS certificates in the default Windows key store.
To use TLS for ADO.NET connections to Vertica:
- Import the server certificate into the Windows key store:
- Create a file
server.crt
with the certificate text of the server certificate. - Double-click
server.crt
certificate file. - Let Windows determine the key type and select Install.
- Create a file
- Import the CA certificate into the Windows key store:
- Create a file
root.crt
with the certificate text of the CA certificate. - Double-click
root.crt
certificate file. - Select Place all certificates in the following store.
- Select Browse, Trusted Root Certification Authorities, and Next.
- Select Install.
- Create a file
Enable SSL in your ADO.NET applications
In your connection string, enable SSL by setting the SSL
property in VerticaConnectionStringBuilder
to true
, for example: