Questions tagged [ssl]
Secure Sockets Layer (SSL) is a cryptographic protocols that provide communication security over the Internet.
207 questions
0
votes
2
answers
59
views
what is the role of SSL in postgresql connectivity?
While installing postgresql
downloaded from here:
I get a connection problem that says:
server does not support SSL, but SSL was required
How can I make my server (in this case my laptop) support SSL?...
0
votes
1
answer
64
views
how to purposefully mismatch database entries?
I've got my standard MariaDB database with phpMyAdmin.
I'm working with OpenSSL and php. And I've got nothing more than a basic rented web-server.
$cipher_algo = 'aes-128-cbc';
$key = '...
2
votes
0
answers
52
views
Running Postgresql container using sslmode=verify-full and accessing from WSL, but getting "could not load private key" error
i setup my postgresql in container, with hostssl and clientcert=verify-full as an option. I already generate root CA, then sign both server-key.pem and server.pem. then I sign client-key.pem and ...
-1
votes
1
answer
84
views
MariaDB Replica error. SSL certificate validation failure
MariaDB Replica error. SSL certificate validation failure
Master and SLave on Windows. Both on MariaDB 10.11.11. All certificates are created on OpenSSL
On Slave:
Slave_IO_State: Connecting to ...
1
vote
1
answer
198
views
Has anyone configured their SSRS instance with ACME SSL Certificates
I have an instance of SQL Server Reporting Services (2019) on our intranet with a company issued SSL certificate.
Our company has started supporting ACME certificates (think "Let's Encrypt", ...
2
votes
1
answer
142
views
MySQL shows two connections. One does not require a password and is the same database I created with MySQL Workbench
MySQL shows two connections. One does not require a password and is the same database I created with MySQL Workbench.
I have two database connections. One is the database that came with the MySQL ...
2
votes
2
answers
2k
views
Is it possible to register two SSL certificates on SQLServer?
In SQLServer 2019, is there a way to install multiple SSL certificates in parallel?
I have the following situation: The division the server belongs to was sold and therefore new DNS aliases were ...
0
votes
1
answer
435
views
SQL Certificate
Recently, I was asked to apply SSL certs to SQL. After a bit of research, I found an article to add the server cert to SQL using the SQL Server Configuration Manager.
When the server cert expires our ...
0
votes
1
answer
100
views
Does the client certificate need to be signed by the server certificate?
I am connecting to a GCP Cloud SQL instance using a client certificate issued by the GCP Cloud SQL service. When I created the client key-pair GCP Cloud SQL gave me three files: a server certificate, ...
1
vote
1
answer
6k
views
How do i disable SSL on MySQL Community 8.0.36 on Ubuntu 23.10?
I wasn't paying attention when I was presented with the option to generate credentials for operating via SSL. Having gone through the whole process, I was advised to follow-up on installing ...
0
votes
0
answers
46
views
I am able to login using server, client and x509 authentication in MongoDB community edition
I am trying to configure x509 authentication for mongodb community edition. Though I have configured the same, I am able to login using server as well as client authentication along with x509 auth. Is ...
0
votes
1
answer
283
views
MySQL connections fail when using SSL after upgrading to MySQL 8
I have a database running 8.0.36 (recently upgraded from 5.7).
On the source Database I create three users:
One wthout SSL, One with REQUIRE SSL, and One with REQUIRE ISSUER.
CREATE USER 'ssl_test1'@'%...
0
votes
2
answers
895
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
...
0
votes
1
answer
5k
views
[ODBC SQL Server Driver][DBNETLIB] SSL Security Error - Windows 2003 App Server to Remote SQL Server 2022 Connection
We have migrated the application databases from an old SQL Server 2000 instance running on Windows 2003 to a new SQL Server 2022 instance running on Windows 2022. The application tier has a number of ...
3
votes
1
answer
2k
views
Explanation of Mysql SSL connection for users created with "REQUIRE SSL"
I'm trying to understand the working of SSL while trying to connect to a MySQL server (via mysql-connector-python). I have MySQL (v5.7) and I have 2 users. One (root) is the default user and the other ...