我试图在 CentOS7 上安装 postgresql11。我在官方网站上找到了安装说明: https ://www.postgresql.org/download/linux/redhat/
然后我按照它的步骤选择以下参数:
1.version: 11
2.platform: RedHat Enterprise,CentOS, Scientific or Oracle version 7
3.architecture: x86_64
得到了安装资源 RPM 的命令:
yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
我在服务器上成功运行它。然后我尝试运行安装客户端软件包的命令:
yum install postgresql11
执行此命令时出现以下错误:
File contains parsing errors: file:///etc/yum.repos.d/pgdg-redhat-all.repo
[line 196]: [pgdg96-updates-debuginfo]k
[line 203]: [pgdg95-updates-debuginfo]k
当我尝试删除这个包使用命令时遇到了同样的错误:
yum erase pgdg-redhat-repo
我在 /etc/yum.repos.d 使用命令中找不到任何内容:
cd /etc/yum.repos.d/ && grep pgdg-redhat-all.repo ./*
我已经在谷歌搜索过这个错误,似乎没有人遇到这个错误。有谁知道如何解决这个问题?