前提・実現したいこと
PHPで作ったWebアプリケーションをHerokuにデプロイした後のDB接続エラーを解消したい
発生している問題・エラーメッセージ
こちら に沿って進めていたのですが、最後にheroku openすると、アプリケーションのログイン画面は表示されるが、DB接続エラーが出ておりログインすることができない。
また、git push heroku masterをした際に、コマンドに 少し気になる記述がされている。(2つ目のエラーメッセージ欄に記述)これも何かDB接続エラーに関係しているのではないか。
DB接続エラー:SQLSTATE[HY000] [2002] No such file or directory
NOTICE: No runtime required in composer.lock; using PHP ^7.0.0
該当のソースコード
<?php try{ $db = new PDO('mysql:dbname=省略; host=省略; port=8889; charset=utf8', '省略', '省略'); }catch(PDOException $e){ print('DB接続エラー:' . $e->getMessage()); }
composer.lockの中身
{ "_readme": [ "This file locks the dependencies of your project to a known state", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], "content-hash": "d751713988987e9331980363e24189ce", "packages": [], "packages-dev": [], "aliases": [], "minimum-stability": "stable", "stability-flags": [], "prefer-stable": false, "prefer-lowest": false, "platform": [], "platform-dev": [], "plugin-api-version": "2.0.0" }
composer.jsonの中身
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "http://example.com/example.json", "type": "object", "title": "The root schema", "description": "The root schema comprises the entire JSON document.", "default": {}, "examples": [ { "require": { "php": "~7.4.1", "ext-mbstring": "*" } } ], "required": [ "require" ], "properties": { "require": { "$id": "#/properties/require", "type": "object", "title": "The require schema", "description": "An explanation about the purpose of this instance.", "default": {}, "examples": [ { "php": "~7.4.1", "ext-mbstring": "*" } ], "required": [ "php", "ext-mbstring" ], "properties": { "php": { "$id": "#/properties/require/properties/php", "type": "string", "title": "The php schema", "description": "An explanation about the purpose of this instance.", "default": "", "examples": [ "~7.4.1" ] }, "ext-mbstring": { "$id": "#/properties/require/properties/ext-mbstring", "type": "string", "title": "The ext-mbstring schema", "description": "An explanation about the purpose of this instance.", "default": "", "examples": [ "*" ] } }, "additionalProperties": true } }, "additionalProperties": true }
試したこと
エラー分でググってみたり、teratailで同じようなエラーが出ている人の投稿など参考にしたが、いまいち分からなかった。
データベース名やホスト名、ユーザー名やパスワードなどは間違っていない。
上記に示した3つのファイルのいずれかのソースコードが間違っていいるのではと思っている。
分かる方がいれば助けてほしいです。よろしくお願いします。
補足情報(FW/ツールのバージョンなど)
PHP7.4.1
MySQL5.7.24
webserver: Apache
windows10
回答1件
あなたの回答
tips
プレビュー