Questions tagged [tls-1.2]
Transport Layer Security (TLS) is a protocol that provides privacy and data integrity between two communicating applications.
44 questions
0
votes
0
answers
13
views
Setting up Cassandra with PEMBasedSslContextFactory results in configuration error
I followed the guide for setting up client to server encryption with the PEMBasedSslContextFactory for Cassandra at https://cassandra.apache.org/doc/stable/cassandra/managing/operating/security.html#...
0
votes
1
answer
238
views
How to connect in case Azure Cosmos DB default force use TLS/SSL?
My case:
Client: Windows 10 x64. pgAdmin 4 version 8.4 (latest).
Server: Cloud Azure Cosmos DB for PostgreSQL burstable, version 16.
My connection string will be likes this
jdbc:postgresql://c-...
0
votes
2
answers
905
views
mongodump refuses to connect with ssl
I have set up my mongod instance with the following config:
net:
port: 27017
bindIp: 0.0.0.0
ssl:
mode: requireSSL
PEMKeyFile: /config/mongo.pem
CAFile: /config/ca.pem
...
1
vote
0
answers
246
views
How can I enable server certificate verification when connecting to a remote host, but not when connecting via localhost?
When I add ssl-verify-server-cert to a [client-mariadb] section in the configuration files, the client correctly verifies the server certificate when connecting to a remote MariaDB instance.
When ...
2
votes
1
answer
1k
views
Is there a way for mongodb clients to connect to mongodb server (SSL/TLS enabled) without client certificates?
I am trying to setup a MongoDB with SSL/TLS enabled. I'm just wondering is there a way for clients to connect to my mongodb server without having a client certificate that would not compromise the ...
0
votes
1
answer
4k
views
DBeaver error returned connecting to Db2 database using SSL/TLS with hostname validation error
I have configured SSL/TLS on Db2/Linux v11.5.7.0. In DBeaver 22.1.5 (Java GUI program to access database) in Driver properties I have configured parameter:
sslConnection to true and DBeaver ...
0
votes
1
answer
3k
views
MongoDB TLS unable to get issuer certificate
I'm setting up a MongoDB server, and wanted to use TLS from a proper CA and DNS.
I got a domain name and put an A record in, linking to my server. Afterwards, I applied for a SSL certificate on ...
0
votes
1
answer
1k
views
SQL Server 2017 and TLS - client requirements
I am testing something around SSL\TLS and SQL Server 2017. I have enabled TLS on a test SQL Server instance by creating a self-signed cert and doing the required steps to add it to the Windows ...
3
votes
0
answers
445
views
Configure SQL server to force encryption programmatically
I'd like to enable the ForceEncryption flag for SQL server programmatically.
I tried:
Set-ItemProperty `
-Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\...
0
votes
0
answers
290
views
After enabling SSL in Oracle user must log in twice
I've enabled SSL for my Oracle 12c DB. The lsnr starts up fine and I can access it via a sqlplus / as sysdba (no password auth there, it's OS local). However, if I attempt to connect as a user which ...
0
votes
1
answer
2k
views
SQL Server 2014 SP3 DB emailer TLS 1.2 support
I have SQL Server 2014 (SP3-CU4) 12.0.6329.1 running on Windows Server 2012R2 with .NET 3.5.30729.4926 installed
I can't get Database emailer to work with TLS 1.2
I tried everything in the article "...
3
votes
1
answer
7k
views
Limit TLS and Cipher Suites on SQL Server 2016-2019
I'm wanting to configure some SQL 2016+ servers to use only TLS 1.2+ and a subset of Cipher suite options (no ciphers considered weak or compromized). I'm having trouble tracking down how to ...
4
votes
1
answer
2k
views
Some basic questions about SQL and TLS 1.0 and 1.2
(I don't believe this is a duplicate of any other TLS-related question, like the authoritative question about SQL Compatibility with TLS or its many duplicates, or questions about specific TLS-related ...
0
votes
0
answers
658
views
Schannel 36871 Error when sending emails from Database Mail - after upgrading to SQL Server 2016
I have recently upgraded from SQL Server 2014 ENT to 2016 ENT, and now I cannot send emails from Database Mail. I get the usual
The mail could not be sent to the recipients because of the mail ...
2
votes
0
answers
3k
views
Configuration of TCP/IP with SSL and TLS for Oracle
I am trying to configure the connections to my Oracle database with tcp / ip using ssl I have been guided by the procedure of the site https://oracle-base.com/articles/misc/configure-tcpip-with-ssl-...
0
votes
1
answer
65
views
Is it possible to use one certificate with aliases for MongoDB cluster?
I currently configure a MongoDB cluster to use TLS certificate.
It could be far more easier to deploy, one certificate with aliases accross all cluster, instead of one certificate per node. But there ...
3
votes
1
answer
15k
views
Application Server is not able to connect to SQL Server database when TLS 1.2 or 1.1 is enabled
In our environment, SQL Server 2012 Servers whenever TLS 1.2 or TLS 1.1 is enabled Application Server is not able to connect to the database.The same issue is observed only on MS SQL Server 2012 ...
0
votes
1
answer
850
views
TLS 1.2 Implementation Validation
I have a validation question regarding implementation of TLS 1.2.
What tools, scripts, processes, etc.. can be used to validate that TLS 1.2 is working when clients, webserver, and SQL Servers are ...
2
votes
2
answers
2k
views
Error after applying SQL Server 2008 R2 Upgrade 10.50.6542 (Latest Build)
First the problem: Since I applied the latest patch to SQL Server 2008 R2 (released on March 3, 2016) that should have taken my server to build 10.50.6542 I can't connect anymore. This patch is to ...
3
votes
1
answer
3k
views
Linked Server Setup Error - SSL Provider: The client and server cannot communicate, because
I am trying to setup a linked server and ending up with the following error.
Error:
SSL Provider: The client and server cannot communicate, because they do not possess a common algorithm.
Environment: ...
2
votes
0
answers
445
views
Does TLS 1.2 for SQL Server require SHA2/SHA256 certificates?
After reviewing SQL Server compatibility with New TLS Standards and much Googling, I think we've got the updates and settings needed to disable TLS 1.0 on SQL Server 2008 R2 with .NET 3.5.1.
But I'...
0
votes
1
answer
10k
views
How to enable TLS1.2 for port 1433
I have received vulnerability on Microsoft SQL server 2008 (RTM)
[high] [1433/tcp/mssql] TLS Version 1.2 Protocol Not Enabled
TLS v1.2 is not enabled on this port.
Already enabled TLS 1.2 on OS ...