Quantcast
Channel: tipshare.info
Viewing all articles
Browse latest Browse all 20

[CakePHP2] database.phpで'host' => '...

$
0
0
[CakePHP2] database.phpで'host' => 'localhost' だとcake bake出来なくなる。 `cake bake db_config`でデフォルト値が`localhost`だったような気がするけど、ともあれ`localhost`にしていると、cake bake modelの際にMySQLにUnixソケットで接続しようとする。開発中とかローカルであってもtcpで接続するつもりの場合、ブラウザからはMySQLに繋がるのに`cake bake`から繋がらない現象になる。 'host' => '127.0.0.1'にして回避可能。ただ`localhost`の状態でBake出来てたような気もするから、もしかしたらもうちょっと複雑な条件があるかもしれない。 ``` Warning Error: PDO::__construct(): [2002] No such file or directory (trying to connect via unix:///var/mysql/mysql.sock) in [/path/to/cakephp/lib/Cake/Model/Datasource/Database/Mysql.php, line 149] Error: Database connection "SQLSTATE[HY000] [2002] No such file or directory" is missing, or could not be created. ``` #cakephp2.0

Viewing all articles
Browse latest Browse all 20

Trending Articles