SQLite:SQLSTATE [HY000] [2002]连接被拒绝

时间:2018-12-14 05:32:55

标签: phpstorm

我正在使用PhpStorm,当我在Heroku上部署项目并运行heroku artisan migrate refresh命令时,会显示:

Running php artisan migrate on ⬢ finalis601kp... up, run.1917 (Free)
**************************************
*     Application In Production!     *
**************************************

 Do you really wish to run this command? (yes/no) [no]:
 > 

所以我选择“是”,那么它给我错误

In Connection.php line 664:

SQLSTATE[HY000] [2002] Connection refused (SQL: select * from information_schema.tables where table_schema = forge and table_name = migrations)  


In PDOConnection.php line 50:

  SQLSTATE[HY000] [2002] Connection refused  


In PDOConnection.php line 46:

  SQLSTATE[HY000] [2002] Connection refused  

my .env file is as below:



DB_CONNECTION=sqlite
DB_DATABASE=/home/PhpstormProjects/FAQ/database/database.sqlite
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USERNAME=homestead
DB_PASSWORD=secret

知道为什么我会看到此错误吗?

1 个答案:

答案 0 :(得分:0)

您的数据库服务器似乎尚未运行。

您是否已启动MAMP / XAMPP / apache-mysql服务器?