Reputation: 21
When running php artisan migrate, It gives following error message
1 PDOException::("SQLSTATE[HY000] [2002] Connection refused") /Users/redblac/olivertes/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70
2
PDO::__construct("mysql:host=127.0.0.1;port=3306;dbname=oliverte", "root", "", []) /Users/redblac/olivertes/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70
Turkish language
EDIT: Çözüm - Veritabanında password no özellikli yeni bir kullanıcı oluşturdum ve mamp kullandığım için .env ye DB_SOCKET=/Applications/MAMP/tmp/mysql/mysql.sock ekledim sorun çözüldü.
Upvotes: 0
Views: 358
Reputation: 3835
The exception means artisan is not able to connect to your database. Try figuring out the following things:
.env
fileIf you want more help on this, try providing us with some more information as to how you have setup your development environment.
Upvotes: 2