CentOS 8 安装pgsql14
时间: 2023-10-15 13:27:01 浏览: 164
centOS离线安装pgsql-12
好的,以下是在 CentOS 8 上安装 PostgreSQL 14 的步骤:
1. 添加 PostgreSQL 官方仓库
```shell
sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
```
2. 安装 PostgreSQL 14
```shell
sudo dnf install -y postgresql14-server postgresql14-contrib
```
3. 初始化数据库
```shell
sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
```
4. 启动 PostgreSQL
```shell
sudo systemctl start postgresql-14
```
5. 设置开机自启
```shell
sudo systemctl enable postgresql-14
```
现在,你已经成功在 CentOS 8 上安装了 PostgreSQL 14。
阅读全文