Warning
Error Code:
1274
MariaDB Error 1274: Slave SSL Configuration Ignored
Description
This error indicates that a MariaDB replication slave is configured to use SSL for its connection to the master, but the MariaDB server binary on the slave was not compiled with SSL support. As a result, any SSL-related parameters specified in the CHANGE MASTER TO statement are ignored, and the replication link proceeds without encryption. This means the replication is unencrypted, despite the intention to secure it.
Error Message
SSL parameters in CHANGE MASTER are ignored because this MariaDB slave was compiled without SSL support; they can be used later if MariaDB slave with SSL is started
Known Causes
3 known causesSlave Lacks SSL Compilation
The MariaDB server binary running on the slave host was built from source or installed from a package that did not include SSL/TLS libraries (like OpenSSL or YaSSL) during compilation.
Incorrect Installation Package
The installed MariaDB package on the slave system is a 'client-only' or 'minimal' version, or an older version that predates standard SSL inclusion, preventing secure replication.
Build Options Excluded SSL
If MariaDB was compiled from source, the CMAKE options explicitly disabled SSL support, even if the necessary libraries were present on the system.
Solutions
Coming SoonGeneral Troubleshooting Tips
- Check the error message carefully for specific details
- Review recent changes that might have caused the error
- Search for the exact error code in the official documentation
- Check log files for additional context
- Try restarting the application or service