centos7 安装postgresql
时间: 2023-05-01 19:04:03 浏览: 150
安装 PostgreSQL 在 CentOS 7 上的方法如下:
1. 添加 PostgreSQL 的 Yum 仓库:
`sudo rpm -Uvh https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm`
2. 安装 PostgreSQL:
`sudo yum install postgresql12-server`
3. 初始化 PostgreSQL 数据库:
`sudo /usr/pgsql-12/bin/postgresql-12-setup initdb`
4. 启动 PostgreSQL 服务:
`sudo systemctl start postgresql-12`
5. 设置开机自启:
`sudo systemctl enable postgresql-12`
6. 配置 PostgreSQL 访问权限:
打开 `/var/lib/pgsql/12/data/pg_hba.conf` 文件,将其中的 `METHOD` 改为 `md5`,并添加以下行:
```
host all all 0.0.0.0/0 md5
host replication all 0.0.0.0/0 md5
```
7. 重新加载配置:
`sudo systemctl reload postgresql-12`
阅读全文