我尝试使用我的laravel应用程序连接外部数据库,并收到以下错误消息:
[Illuminate\Database\QueryException]
could not find driver (SQL: select * from information_schema.tables where table_schema = lextern and table_name = migrations)
[PDOException]
could not find driver
连接:
DB_CONNECTION=mysql
DB_HOST=db_ip
DB_PORT=3306
DB_DATABASE=lextern
DB_USERNAME=lextern_root
DB_PASSWORD=db_pw
如果我从localhost那样做,那么它可以工作......
我没有在服务器上安装mysql,但希望与外部数据库连接,我是否还需要在我的服务器上安装一些东西?
答案 0 :(得分:0)
您的外部数据库服务器没有mysql服务器,或者它没有运行。
sudo /etc/init.d/mysql start
将启动服务器。