环境 CentOS 7 PostgreSQL 10.10 安装 安装 yum 源 1 2 3 4 5 6 7 8 yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm # 或者从清华镜像站下载 yum install https://mirrors.tuna.tsinghua.edu.cn/postgresql/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm # 可以更换成清华镜像站地址 sed -i 's,download.postgresql.org/pub,mirrors.tuna.tsinghua.edu.cn/postgresql,' /etc/yum.repos.d/pgdg-redhat-all.repo # 更新 yum 缓存 yum clean all yum makecache fast 安装 postgresql-server 1