我尝试使用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


如果我从本地主机执行此操作,那么它将起作用...

我没有在服务器上安装mysql,但希望与外部数据库连接,是否还需要在服务器上进行设置?

最佳答案

您的外部数据库服务器没有mysql服务器或未运行。

将启动服务器。

08-27 03:40