只更改了数据库配置中的host 127.0.0.1,改成了服务器地址
// 默认数据库
'default' => 'mysql',
// 各种数据库配置
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => 3306,
'database' => 'webman',
'username' => 'webman',
'password' => '',
'unix_socket' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
请问下,是什么原因,这个远程数据库在其他地方可以链接使用,没问题,webman链接报这样的错
ubuntu20.04 php 7.4
could not find driver,应该是php cli 没装pdo_mysql扩展。
运行 php -m 查看php cli安装了哪些扩展。
谢谢大佬,是pdo_mysql没装好