We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By default with MariaDB 11.4, MASTER_SSL_VERIFY_SERVER_CERT is enable.
When i used variable primary_ssl_verify_server_cert with community.mysql.mysql_replication to disable cert server verify
primary_ssl_verify_server_cert
community.mysql.mysql_replication
community.mysql.mysql_replication: mode: changeprimary ... primary_ssl_verify_server_cert: false ... ignore_errors: true
MASTER_SSL_VERIFY_SERVER_CERT is always enable
2.15
community-mysql-3.10.3.tar.gz
redhat 8
community.mysql.mysql_replication: mode: changeprimary master_host: "{{ ReplicationMasterIpOnSlave }}" master_port: "{{ ReplicationMasterPortOnSlave }}" master_user: "{{ ReplicationUser.name }}" master_password: "{{ ReplicationUser.password }}" master_ssl: 1 master_ssl_ca: "{{ TlsCAFilePath ) }}" master_ssl_cert: "{{ TlsPEMCertFilePath }}" master_ssl_key: "{{ TlsPEMKeyFilePath }}" master_ssl_cipher: "{{ TlsCipher }}" primary_ssl_verify_server_cert: false login_unix_socket: "{{ Server }}/{{ dbServer }}.sock" ignore_errors: true
Trace :
changed: [opgalbd02] => { "changed": true, "invocation": { "module_args": { "ca_cert": null, "channel": null, "check_hostname": null, "client_cert": null, "client_key": null, "config_file": "/opt/mysql/.my.cnf", "connect_timeout": 30, "connection_name": null, "fail_on_error": false, "login_host": "localhost", "login_password": null, "login_port": 3306, "login_unix_socket": "/data/myserver01.sock", "login_user": null, "master_host": "192.168.2.221", "master_password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "master_port": "3306", "master_ssl": 1, "master_ssl_ca": "/etc/tls/certs/ca-cert.pem", "master_ssl_cert": "/etc/tls/certs/server-cert.pem", "master_ssl_cipher": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!aECDH:!RC4", "master_ssl_key": "/etc/tls/private/server-private.key", "master_user": "replication", "mode": "changeprimary", "primary_auto_position": false, "primary_connect_retry": null, "primary_delay": null, "primary_host": "192.168.2.221", "primary_log_file": null, "primary_log_pos": null, "primary_password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "primary_port": 3306, "primary_ssl": true, "primary_ssl_ca": "/etc/tls/certs/ca-cert.pem", "primary_ssl_capath": null, "primary_ssl_cert": "/etc/tls/certs/server-cert.pem", "primary_ssl_cipher": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!aECDH:!RC4", "primary_ssl_key": "/etc/tls/private/server-private.key", **"primary_ssl_verify_server_cert": false,** "primary_use_gtid": null, "primary_user": "replication", "relay_log_file": null, "relay_log_pos": null } }, "queries": [ "CHANGE MASTER TO MASTER_HOST='192.168.2.221',MASTER_USER='replication',MASTER_PASSWORD='********',MASTER_PORT=3306,MASTER_SSL=1,MASTER_SSL_CA='/etc/tls/certs/ca-cert.pem',MASTER_SSL_CERT='/etc/tls/certs/server-cert.pem',MASTER_SSL_KEY='/etc/tls/private/server-private.key',MASTER_SSL_CIPHER='ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!aECDH:!RC4'" ] }
MASTER_SSL_VERIFY_SERVER_CERT=0
MASTER_SSL_VERIFY_SERVER_CERT=1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SUMMARY
By default with MariaDB 11.4, MASTER_SSL_VERIFY_SERVER_CERT is enable.
When i used variable
primary_ssl_verify_server_cert
withcommunity.mysql.mysql_replication
to disable cert server verifyMASTER_SSL_VERIFY_SERVER_CERT is always enable
ISSUE TYPE
COMPONENT NAME
community.mysql.mysql_replication
ANSIBLE VERSION
2.15
COLLECTION VERSION
community-mysql-3.10.3.tar.gz
CONFIGURATION
OS / ENVIRONMENT
redhat 8
STEPS TO REPRODUCE
Trace :
EXPECTED RESULTS
MASTER_SSL_VERIFY_SERVER_CERT=0
ACTUAL RESULTS
MASTER_SSL_VERIFY_SERVER_CERT=1
The text was updated successfully, but these errors were encountered: