Bug 1366773
| Summary: | Connection to a remote server using SSL fails | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Paul E. Jones <paulej> |
| Component: | perl-DBD-MySQL | Assignee: | Jitka Plesnikova <jplesnik> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 24 | CC: | jplesnik, perl-devel |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | perl-DBD-MySQL-4.035-2.fc26 perl-DBD-MySQL-4.035-3.fc24 perl-DBD-MySQL-4.035-3.fc25 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-08-26 10:22:07 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
There is a mistake in Makefile.PL options perl-DBD-MySQL-4.035-2.fc25 has been submitted as an update to Fedora 25. https://bodhi.fedoraproject.org/updates/FEDORA-2016-d0c16fc811 perl-DBD-MySQL-4.035-2.fc24 has been submitted as an update to Fedora 24. https://bodhi.fedoraproject.org/updates/FEDORA-2016-80083f142c perl-DBD-MySQL-4.035-2.fc24 has been pushed to the Fedora 24 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-80083f142c I manually checked perl-DBD-MySQL-4.035-2.fc24 and it worked for me. Thanks! perl-DBD-MySQL-4.035-2.fc25 has been pushed to the Fedora 25 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-d0c16fc811 perl-DBD-MySQL-4.035-3.fc25 has been submitted as an update to Fedora 25. https://bodhi.fedoraproject.org/updates/FEDORA-2016-a5418eb361 perl-DBD-MySQL-4.035-3.fc24 has been submitted as an update to Fedora 24. https://bodhi.fedoraproject.org/updates/FEDORA-2016-4334ddee02 perl-DBD-MySQL-4.035-3.fc25 has been pushed to the Fedora 25 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-a5418eb361 perl-DBD-MySQL-4.035-3.fc24 has been pushed to the Fedora 24 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-4334ddee02 perl-DBD-MySQL-4.035-3.fc24 has been pushed to the Fedora 24 stable repository. If problems still persist, please make note of it in this bug report. perl-DBD-MySQL-4.035-3.fc25 has been pushed to the Fedora 25 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: Using a Perl script to connect to a remote MariaDB server for a user who is required to use SSL fails. The same connection from the same machine worked with the initial Fedora 24 release, but it does not work now after performing a "dnf update". Also running the same script from a Fedora 23 docker container on the same server works. Version-Release number of selected component (if applicable): perl-DBD-MySQL-4.035-1 How reproducible: Attempt to connect to a MariaDB server using a user account that requires SSL. Code like the following will fail: DBI->connect("DBI:mysql:" . "database=$database_name;" . "host=$database_server", "$database_user_id", "$database_password", { 'mysql_ssl' => 1, 'mysql_ssl_verify_server_cert' => 1, 'PrintError' => 1 }); Actual results: DBI connect('database=XXXXX;host=XXXXX','spam',...) failed: Access denied for user 'XXXXX'@'XXXXX' (using password: YES) at ./dbtest.pl line 102. Unable to connect to the database: Access denied for user 'XXXXX'@'XXXXX' (using password: YES) Expected results: No error should occur, and does not occur with Fedora 23 and did not occur with the initial release of Fedora 24. Additional info: