1272
MySQLwarningreplicationhigh confidence
Slave is not supported in this build
Production Risk
Medium — replication proceeds without encryption; data in transit is unprotected.
What this means
SSL parameters were supplied to CHANGE MASTER TO but this MySQL binary was not compiled with SSL support, so the parameters are ignored.
Why it happens
- 1Using a non-SSL build of MySQL
- 2Providing MASTER_SSL=1 on a build without OpenSSL
How to reproduce
trigger — this will error
trigger — this will error
CHANGE MASTER TO MASTER_SSL=1;
expected output
Warning 1272: Slave is not supported in this build
Fix
Use an SSL-enabled build
Use an SSL-enabled build
SHOW VARIABLES LIKE 'have_ssl';
Why this works
Confirms whether SSL support is compiled in.
What not to do
✕
Version notes
Sources
Official documentation ↗
MySQL 8.0 — 1272 ER_SLAVE_IGNORED_SSL_PARAMS
Content generated with AI assistance and reviewed for accuracy. Found an error? hello@errcodes.dev