MySQL Mac에서 Laravel 설정 php artisan migrate error : No such file or directory
php artisan migrate, 다음 오류가 발생했습니다. [PDOException] SQLSTATE[HY000] [2002] No such file or directory 주의 : php -v is 5.5 and mysql -v is 5.5 from the terminal 다음은 내 config / database.php의 일부입니다. 'mysql' => array( 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'essays', 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', ), 나..
2020. 12. 20.