Warning: mysqli::__construct(): php_network_getaddresses: getaddrinfo failed:

原来数据库的配置是这样的

DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306

修改成如下:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306

再次执行OK:

猜你喜欢

转载自blog.csdn.net/james_laughing/article/details/91642159