centos7.9安装postgresql
时间: 2023-11-19 22:57:40 浏览: 123
CentOS安装Postgresql数据库
以下是在CentOS 7.9上安装PostgreSQL的步骤:
1. 添加PostgreSQL官方yum源
```bash
yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
```
2. 安装PostgreSQL
```bash
yum install -y postgresql12-server
```
3. 初始化数据库
```bash
/usr/pgsql-12/bin/postgresql-12-setup initdb
```
4. 启动PostgreSQL服务
```bash
systemctl start postgresql-12
```
5. 设置开机自启动
```bash
systemctl enable postgresql-12
```
6. 配置防火墙
```bash
firewall-cmd --add-service=postgresql --permanent
firewall-cmd --reload
```
注意:以上命令中的“12”是指安装的PostgreSQL版本号,如果你安装的是其他版本,需要相应地修改命令中的版本号。
阅读全文