mpociot / laravel-test-factory-helper

Generate Laravel test factories from your existing models
935 stars 87 forks source link

SQLSTATE[HY000] [2002] No such file or directory #48

Closed AhmadAudeh closed 4 years ago

AhmadAudeh commented 4 years ago

I have solved this issue, but thought to share in case someone else will face it: After downloading this package and running php artisan generate:model-factory
I got empty factory files and the following exception for each factory file : SQLSTATE[HY000] [2002] No such file or directory I am using 'mysql' and I haven't had any problem with DB connection before while working with my Laravel application. The exception was related to dbal connection, and the solution was to add : 'unix_socket' => '/Applications/MAMP/tmp/mysql/mysql.sock', To my mysql driver in Laravel 'config->database.php'