Cakephp 3 - 通过SSL连接MySQL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cakephp 3 - 通过SSL连接MySQL相关的知识,希望对你有一定的参考价值。

我有一个关于通过SSL与Cakephp 3连接到mysql-Server的问题。我知道这可能更像是一个PHP问题,但我在这里写的是我使用的框架。

所以我设置了一个远程mysql服务器,并希望将CakePHP与它连接起来。不幸的是我得到了MySQL错误:

SQLSTATE[HY000] [3159] Connections using insecure transport are prohibited while --require_secure_transport=ON. 

原因我配置服务器只允许安全连接。之后,我搜索了有关安全连接的Cakephp文档,并找到了ssl证书。这是我的设置:

config.php文件

'Datasources' => [
    'default' => [
        'className' => 'CakeDatabaseConnection',
        'driver' => 'CakeDatabaseDriverMysql',
        'persistent' => false,
        'host' => 'remote-ip',
        /**
         * CakePHP will use the default DB port based on the driver selected
         * MySQL on MAMP uses port 8889, MAMP users will want to uncomment
         * the following line and set the port accordingly
         */
        //'port' => 'non_standard_port_number',
        'username' => 'my_user',
        'password' => 'my_password',
        'database' => 'my_database',
        'encoding' => 'utf8',
        'timezone' => 'UTC',
        'flags' => [],
        'cacheMetadata' => true,
        'ssl_key' => '/home/my-user/client-ssl/client-key.pem',
        'ssl_cert' => '/home/my-user/client-ssl/client-cert.pem',
        'ssl_ca' => '/home/my-user/client-ssl/ca.pem',
        'log' => false,

不幸的是我刚收到以下错误:

SQLSTATE[HY000] [2002]

据我所知,一切都应该与证书正确设置,因为我可以使用终端和续集登录证书如下:

mysql -u my_user -h remote_ip -p --ssl-ca=~/client-ssl/ca.pem --ssl-cert=~/client-ssl/client-cert.pem --ssl-key=~/client-ssl/client-key.pem

如果我尝试这样的原始PHP(当然有我的信息):

<?php
ini_set ('error_reporting', E_ALL);
ini_set ('display_errors', '1');
error_reporting (E_ALL|E_STRICT);

$db = mysqli_init();
mysqli_options ($db, MYSQLI_OPT_SSL_VERIFY_SERVER_CERT, true);

$db->ssl_set('/etc/mysql/ssl/client-key.pem', '/etc/mysql/ssl/client-cert.pem', '/etc/mysql/ssl/ca-cert.pem', NULL, NULL);
$link = mysqli_real_connect ($db, 'ip', 'user', 'pass', 'db', 3306, NULL, MYSQLI_CLIENT_SSL);
if (!$link)
{
    die ('Connect error (' . mysqli_connect_errno() . '): ' . mysqli_connect_error() . "
");
} else {
    $res = $db->query('SHOW TABLES;');
    print_r ($res);
    $db->close();
}
?>

我有:

PHP警告:mysqli_real_connect():对等证书CN = MySQL_Server_5.7.20_Auto_Generated_Server_Certificate' did not match expected CN=remote_ip'

所以现在我的问题。有人有类似的问题或可以帮助我获得证书吗? (我使用ubuntu 16,php 7)或者是否有另一种方法来解决“使用不安全传输的连接......” - 错误?

答案

该错误(Peer certificate CN=...)告诉您的是,自动生成的证书是为IP或域名创建的(可能是127.0.0.1?),而不是您连接的证书。确保你有任何'remote-ip'证书。

最有可能的是,config.php中的host条目不正确。尝试将其设置为您的域名,server-ip,甚至是“localhost”。

'host' => 'remote-ip',

生成证书。

It is also possible you're running into another issue already solved:

PHP MySQL over SSL. Peer certificate did not match

以上是关于Cakephp 3 - 通过SSL连接MySQL的主要内容,如果未能解决你的问题,请参考以下文章

CakePHP 3 - 通过其他表连接?

配置spring通过ssl连接mysql

Cakephp 3 尝试使用 gmail 发送电子邮件时出错

通过 SSL 与 Laravel 的 MySQL 连接

CakePHP 3 更新连接表中的数据

通过 SSL 的 Spring Boot 远程 Mysql 连接