MySQL/MariaDB with SSL

It is no problem for localhost, but it is usefull when a client connects from another location (for example with a mysql-client like MySQL Workbench)

You can add it with the GRANT query ( GRANT ALL PRIVILEGES ON *.* TO 'client'@'xxx.xxx.xxx.xxx' IDENTIFIED BY 'password' REQUIRE SSL; )
 
Back
Top