I can't get around this SSL error with the MariaDB client (Arch Linux)

On my Arch Linux system, I installed MariaDB and typed the following command: mariadb -u root -h 10.129.136.171
This was supposed to connect me to the SQL server on the Sequel machine. However, instead of being shown the SQL prompt, I get this error: ERROR 2026 (HY000): TLS/SSL error: SSL is required, but the server does not support it. It says SSL is “required”, and I haven’t found a way to get around it yet.

How do I connect to this server despite the lack of SSL?

use this
└─$ mysql -u root -h {host-ip} --skip-ssl

2 Likes