-
Notifications
You must be signed in to change notification settings - Fork 34
Warning from MySQL about SSL connection #420
New issue
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
Comments
I found it in |
@cssru Could you investigate it? First I need to understand why it happens and what are the possible solutions? Just post result of your investigation here as a comment and later we decided what to do with this issue. |
How did you secure mysql server connections? |
Notice that if you don't use SSL for MySQL connections you should use link like this: |
I don't secure connection somehow. See the |
So use my previous comment to avoid this warning. |
This removes the following warning from the logs: WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. Fix php-coder#420
…ion. Should be in 581f592, 423f0da and e9473ae commits. Addressed to php-coder#420 [ci skip]
This removes the following warning from the logs: WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. Fix php-coder#420
…ion. Should be in 581f592, 423f0da and e9473ae commits. Addressed to php-coder#420 [ci skip]
Appears in log (after #399) during mystamps service startup:
The text was updated successfully, but these errors were encountered: