...and it's working finally.
After configuring MariaDB modify the file \Services\Database\classes\PDO\class.ilDBPdo.php
~line 68:
protected $attributes = array(
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
...
//ssl
PDO::MYSQL_ATTR_SSL_CA => '/dev/null',
PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT => false,
//ssl
...
);
Hope it helps, Daniel
After configuring MariaDB modify the file \Services\Database\classes\PDO\class.ilDBPdo.php
~line 68:
protected $attributes = array(
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
...
//ssl
PDO::MYSQL_ATTR_SSL_CA => '/dev/null',
PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT => false,
//ssl
...
);
Hope it helps, Daniel