我正在尝试将我的新Laravel 5.8项目附加到Bitnami WAPP的(https://bitnami.com/stack/wapp)(v 7.1)Postgresql服务器上
我的.env数据库配置:
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=rest
DB_USERNAME=postgres
DB_PASSWORD=*password defined during WAPP installation*
当我运行php artisan migrate
时,我得到:
Illuminate\Database\QueryException : could not find driver (SQL: select * from information_schema.tables where table_schema = public and table_name = migrations)
我在做什么错了?
答案 0 :(得分:0)
必须在PHP配置设置(php.ini)中取消注释pdo和postgres共享对象。
您需要在php.ini
extension=pdo_pgsql.so
extension=pgsql.so
之后,重新启动服务器。