centos7安装postgresql
时间: 2023-04-24 22:06:18 浏览: 164
postgresql数据库在centos7下的安装
CentOS 7 上安装 PostgreSQL 的步骤如下:
1. 添加 PostgreSQL 存储库:
```
sudo yum install 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 postgresql12
```
3. 初始化数据库并启动服务:
```
sudo /usr/pgsql-12/bin/postgresql-12-setup initdb
sudo systemctl start postgresql-12
sudo systemctl enable postgresql-12
```
4. 设置密码并允许远程连接(可选):
```
sudo -u postgres psql
\password postgres
```
然后编辑 pg_hba.conf 文件,允许远程连接,重启服务器。
```
sudo systemctl restart postgresql-12
```
5. 通过客户端连接服务器:
```
psql -U postgres
```
希望这些步骤能帮助您在 Centos7 上安装并配置 PostgreSQL 数据库。
阅读全文