# PHP_連線postgresql

安裝postgrel extenstion

```shell
yum install php-pgsql -y
```

修改 /var/lib/pgsql/12/data/pg\_hba.conf

```
host    all             all             10.60.87.0/24           md5
```

重啟服務

```
service postgresql-12 restart
```