web-dev-qa-db-ja.com

CentOS7にpostgresql11をインストールすると、異常なリポジトリエラーが発生する

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

Resository 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 useコマンドでコンテンツを見つけることができませんでした:

cd /etc/yum.repos.d/ && grep pgdg-redhat-all.repo ./*

私はすでにこのエラーをグーグルで検索しており、誰もこのエラーに遭遇しなかったようです。誰もがこの問題を解決する方法を知っていますか?

3
Archer Hu

そのrpmを準備するときに、パッケージエラーが発生したようです。 /etc/yum.repos.d/pgdg-redhat-all.repoには、セクションがあります

[pgdg10-updates-debuginfo]
name=PostgreSQL 10 for RHEL/CentOS $releasever - $basearch - Debuginfo
baseurl=https://download.postgresql.org/pub/repos/yum/debug/10/redhat/rhel-$releasever-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG

[pgdg96-updates-debuginfo]k
name=PostgreSQL 9.6 for RHEL/CentOS $releasever - $basearch - Debuginfo
baseurl=https://download.postgresql.org/pub/repos/yum/debug/9.6/redhat/rhel-$releasever-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG

[pgdg95-updates-debuginfo]k
name=PostgreSQL 9.5 for RHEL/CentOS $releasever - $basearch - Debuginfo
baseurl=https://download.postgresql.org/pub/repos/yum/debug/9.5/redhat/rhel-$releasever-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG

# Debuginfo/debugsource packages for testing repos
# Available for 9.6 and above.

]の後にksを削除するだけで大​​丈夫です。 このバグはすでに報告されています

6
Ulrich Schwarz