Skip to content
Follow
Ubuntu Linux

How to Create a Self-Signed SSL Certificate for MariaDB on Ubuntu 24.04

Richard
Written by
Richard
Feb 21, 2025 Updated Aug 13, 2026 4 min read
How to Create a Self-Signed SSL Certificate for MariaDB on Ubuntu 24.04
How to Create a Self-Signed SSL Certificate for MariaDB on Ubuntu 24.04

A self-signed SSL certificate for MariaDB on Ubuntu 24.04 is a custom security file you make yourself to scramble and protect data sent between your database and apps. This free setup stops snoops from reading your private database traffic on local networks or test servers without needing to buy a paid certificate.

⚡ Quick Answer

Create a self-signed certificate using OpenSSL commands, then copy the server.crt and server.key files to /var/lib/mysql/pki. Edit the MariaDB configuration file to point to these certificate paths and restart the MariaDB service.

Create MariaDB SSL Certificate

Testing environments and private networks benefit greatly from this setup because it prevents third parties from eavesdropping on database traffic. The following steps walk through generating the certificate and configuring MariaDB to use it.

If you haven’t already created a self-signed certificate, you can follow the post below to create one on Ubuntu.

Create a self-signed certificate on Ubuntu

Once created, continue below to use the certificates in MariaDB.

Configure MariaDB SSL Connection

MariaDB requires a dedicated directory to locate and load security keys. Copy the certificate files into /etc/mysql/ssl/ before adjusting permissions for the database user account.

Copy the certificate files from `/etc/ssl/private` to `/etc/mysql/ssl` to secure your MariaDB server. Next, adjust the permissions to grant the MariaDB account access. Open the MariaDB configuration file using the command below and add the following lines before saving your changes.

Then, adjust the permissions to allow the MariaDB account access.

🐧Bash / Shell
sudo cp /etc/ssl/private/{server.crt,server.key} /var/lib/mysql/pki/
sudo chown -R mysql:mysql /var/lib/mysql/pki

After that, open the MariaDB configuration file using the command below.

🐧Bash / Shell
sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf

Add these lines to the file and save your changes.

💻Code
# * SSL/TLS

# For documentation, please read
# https://mariadb.com/kb/en/securing-connections-for-client-and-server/
#ssl-ca = /etc/mysql/cacert.pem
#ssl-cert = /etc/mysql/server-cert.pem
#ssl-key = /etc/mysql/server-key.pem
#require-secure-transport = on

ssl-cert = /var/lib/mysql/pki/server.crt
ssl-key = /var/lib/mysql/pki/server.key


..............
..............

Now, exit and restart MariaDB.

🐧Bash / Shell
sudo systemctl restart mariadb

Validate MariaDB SSL settings

You can check if your MariaDB SSL settings are working correctly by logging into the database and looking at the SSL variables. This confirms that your self-signed certificate is active and being used for secure connections.

First, log into the MariaDB database.

🐧Bash / Shell
sudo mariadb

Then, run the SQL statement to list the SSL tables.

💻Code
show variables like '%ssl%'; 

You should see a result similar to this:

💻Code
+---------------------+-------------------------------+
| Variable_name | Value |
+---------------------+-------------------------------+
| have_openssl | YES |
| have_ssl | YES |
| ssl_ca | |
| ssl_capath | |
| ssl_cert | /var/lib/mysql/pki/server.crt |
| ssl_cipher | |
| ssl_crl | |
| ssl_crlpath | |
| ssl_key | /var/lib/mysql/pki/server.key |
| version_ssl_library | OpenSSL 3.0.13 30 Jan 2024 |
+---------------------+-------------------------------+
10 rows in set (0.001 sec)

You can also check how long the certificates are valid by running the command below.

💻Code
show status like 'Ssl_server_not%';

It should show output lines like these:

Database tools require SSL to be enabled for connections to function correctly, ensuring secure data transfer. For new users, run the SQL statement below to create a user named jdoe and set a password.

For new users, run the SQL statement below to create a user named jdoe and set a password.

💻Code
CREATE USER jdoe IDENTIFIED BY 'type_your_password_here' require ssl; 

Remember to replace jdoe with the username you want to create.

Run the statement below to verify all database accounts that must use SSL for connections.

💻Code
select user,host,ssl_type,plugin from mysql.user;

Your output should appear similar to this:

💻Code
+-------------+-----------+----------+-----------------------+
| User | Host | ssl_type | plugin |
+-------------+-----------+----------+-----------------------+
| mariadb.sys | localhost | | mysql_native_password |
| root | localhost | | mysql_native_password |
| mysql | localhost | | mysql_native_password |
| jdoe | % | ANY | mysql_native_password |
+-------------+-----------+----------+-----------------------+

To make existing database accounts use SSL, run the following SQL statement:

💻Code
alter user 'root'@'localhost' require ssl;

Connect to MariaDB using SSL

Connecting to MariaDB using SSL creates a safe, encrypted connection between your computer and the database. This protects your data as it travels, making sure it stays private and secure during transfer.

Database tools require SSL to be enabled for connections to function correctly, ensuring secure data transfer.

The database server now forces encrypted communication for all incoming connections.

Conclusion:

  • Implementing a self-signed SSL certificate for MariaDB strengthens security by encrypting data transmitted between the server and clients.
  • Following the steps outlined, you can successfully create, configure, and validate SSL connections for your MariaDB database.
  • Enforcing SSL for all user connections ensures that sensitive information remains secure from potential eavesdropping.
  • Regularly check and manage SSL certificates to maintain a secure database environment and avoid potential disruptions.
  • Consider moving to a trusted certificate authority (CA) for production environments to enhance security further.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Create a Self-Signed SSL Certificate on Ubuntu 24.04
Ubuntu Linux How to Create a Self-Signed SSL Certificate on Ubuntu 24.04
Secure MySQL with Self-Signed SSL Certificate on Ubuntu 24.04
Ubuntu Linux Secure MySQL with Self-Signed SSL Certificate on Ubuntu 24.04
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *