微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Centos8安装PostgreSQL

一、前言

官网地址:https://www.postgresql.org/download/linux/redhat/

二、安装

# Install the repository RPM:
sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm

# disable the built-in Postgresql module:
sudo dnf -qy module disable postgresql

# Install Postgresql:
sudo dnf install -y postgresql13-server

# Optionally initialize the database and enable automatic start:
sudo /usr/pgsql-13/bin/postgresql-13-setup initdb
sudo systemctl enable postgresql-13
sudo systemctl start postgresql-13

过程中如果出现错误,请执行:sudo dnf install wget

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐