官网

PostgreSQL 官方下载地址→点此跳转
PostgreSQL 官方Linux/Redhat下载地址→点此跳转

获取安装脚本

根据自身情况选择系统和数据库版本,这里以CentOS8 PostgreSQL-13版本为例。

选择您的操作系统(Select your operating system family): Linux
选择您的Linux发行版(Select your Linux distribution): Red Hat/Rocky/CentOS

跳转至Linux/Redhat下载页面
选择版本(Select version): 13
选择平台(Select platform): Red Hat Enterprise, Rocky, or Oracle version 8
选择架构(Select architecture): x86_64

下方为获取的对应脚本

安装

复制、粘贴和运行安装脚本的相关部分(Copy, paste and run the relevant parts of the setup script)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 安装RPM存储库
sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm

# 禁用内置 PostgreSQL 模块
sudo dnf -qy module disable postgresql

# 安装 PostgreSQL:
sudo dnf install -y postgresql13-server

# 可选地初始化数据库并启用自动启动
sudo /usr/pgsql-13/bin/postgresql-13-setup initdb

# 设置 PostgreSQL 开机启动
sudo systemctl enable postgresql-13

# 启动 PostgreSQL
sudo systemctl start postgresql-13

# 重启 PostgreSQL
sudo systemctl start postgresql-13