LoginSignup
2
2

More than 5 years have passed since last update.

CakePHP + MAMP でbakeするとDB接続エラー

Posted at

database.php の設定をしてTOPページでは

CakePHP is able to connect to the database.

と出ているのに bake するとDB接続エラーになってしまう場合。

Error: Database connection "Mysql" is missing, or could not be created.

hostlocalhost から 127.0.0.1 に変更して解決しました。

database.php
<?php
public $default = array(
        'datasource' => 'Database/Mysql',
            'persistent' => false,
            'host' => '127.0.0.1',
            'login' => 'root',
            'password' => 'root',
            'database' => 'db',
            'prefix' => '',
            'encoding' => 'utf8',
            'port' => 8889,
            'unix_scoket' => '/Applications/MAMP/tmp/mysql/mysql.sock',
       );
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2