1

私は当初、cakephp 3 アプリケーションにローカルの mysql データベースを使用していましたが、すべて正常に機能していました。Cakephp3 アプリケーションをデプロイ中なので、RDS MySql インスタンスを作成して MySql ワークベンチに接続し、以前に持っていたデータベースを RDS データベースにコピーしました。私のapp.phpの設定はそうです。

私が持っている私の定数を定義するには

if (!defined('RDS_HOSTNAME')) {
  define('RDS_HOSTNAME', $_SERVER['myendpoint.us-west-1.rds.amazonaws.com']);
  define('RDS_USERNAME', $_SERVER['myusername']);
  define('RDS_PASSWORD', $_SERVER['mypassword']);
  define('RDS_DB_NAME', $_SERVER['my_db']);
}

次に、app.php ファイルの datasources セクションで

'Datasources' => [
    'default' => [
        'className' => 'Cake\Database\Connection',
        'driver' => 'Cake\Database\Driver\Mysql',
        'persistent' => false,
        'host' => RDS_HOSTNAME,
        /**
         * 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' => RDS_USERNAME,
        'password' => RDS_PASSWORD,
        'database' => RDS_DB_NAME,
        'encoding' => 'utf8',
        'timezone' => 'UTC',
        'flags' => [],
        'cacheMetadata' => true,
        'log' => false,

AWS コンソールでは、RDS インスタンスに接続していると表示されます。ただし、登録/ログインしようとすると、CakePHP 内部エラーが発生しました。次に、エラー ログを確認したところ、error.log ファイルでこれが見つかりました。

2016-06-20 17:25:35 Error: [PDOException] SQLSTATE[HY000] [1045] Access denied for user ''@'localhost' (using password: NO)
Request URL: /users/register
Referer URL: http://localhost:8765/
Client IP: 127.0.0.1
Stack Trace:
#0 /home/danielparkk/Desktop/SubReminder/vendor/cakephp/cakephp/src/Database/Driver/PDODriverTrait.php(47): PDO->__construct('mysql:host=;por...', NULL, NULL, Array)
#1 /home/danielparkk/Desktop/SubReminder/vendor/cakephp/cakephp/src/Database/Driver/Mysql.php(90): Cake\Database\Driver\Mysql->_connect('mysql:host=;por...', Array)

私が間違っていることを理解していませんか?所有しているデータベースのローカル コピーに戻ると、すべてが正常に機能します。どんな助けでも大歓迎です。

===================編集=======================

2016-06-21T00:22:17.815360Z 24 [Note] Access denied for user 'root'@'108-83-57-226.lightspeed.irvnca.sbcglobal.net' (using password: NO)
2016-06-21T00:34:38.776248Z 26 [Note] Aborted connection 26 to db: 'subscriptions_db' user: 'root' host: '108-83-57-226.lightspeed.irvnca.sbcglobal.net' (Got timeout reading communication packets)
2016-06-21T00:34:42.872265Z 25 [Note] Aborted connection 25 to db: 'subscriptions_db' user: 'root' host: '108-83-57-226.lightspeed.irvnca.sbcglobal.net' (Got timeout reading communication packets)

インスタンスの AWS コンソールでエラー ログを読み取ると、次のような出力が得られました。率直に言って、RDS を使用するのはこれが初めてなので、これが何を意味するのかわかりませんが、他の人にとっては役立つかもしれません.

4

1 に答える 1

0

これを $_SERVER に書き込む必要はありません。私も接続しています Cakephp 3.01 AWS RDS 以下は私のコードです。

   'Datasources' => [
    'default' => [
        'className' => 'Cake\Database\Connection',
        'driver' => 'Cake\Database\Driver\Mysql',
        'persistent' => false,
         'host' => 'yourendpoint.us-west-1.rds.amazonaws.com',
         'username' => 'rdsusername',
         'password' => 'rdspassword',
         'database' => 'rdsdatabasename',
        'encoding' => 'utf8',
        'timezone' => 'UTC',
        'cacheMetadata' => true,

        /**
         * Set identifier quoting to true if you are using reserved words or
         * special characters in your table or column names. Enabling this
         * setting will result in queries built using the Query Builder having
         * identifiers quoted when creating SQL. It should be noted that this
         * decreases performance because each query needs to be traversed and
         * manipulated before being executed.
         */
        'quoteIdentifiers' => false,

        /**
         * During development, if using MySQL < 5.6, uncommenting the
         * following line could boost the speed at which schema metadata is
         * fetched from the database. It can also be set directly with the
         * mysql configuration directive 'innodb_stats_on_metadata = 0'
         * which is the recommended value in production environments
         */
        //'init' => ['SET GLOBAL innodb_stats_on_metadata = 0'],
    ]
   ],
于 2016-06-21T06:13:06.917 に答える