Creating a MariaDB database in Amazon RDS using SSL



Creating a MariaDB database in Amazon RDS using SSL

Creating a MariaDB database in Amazon RDS using SSL

How to create a MariaDB database in AWS RDS using SSL and how to access it using DBeaver.

Links from the video:
+ SSL Certificates – https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html#UsingWithRDS.SSL.IntermediateCertificates

+ Use the GRANT statement to require SSL connections with your database user. So for instance if when I setup the RDS database the username was drventura then I would use GRANT USAGE ON *.* TO ‘drventura’@’%’ REQUIRE SSL

Comments are closed.