Centos 7にpostgresql 9.4をインストールできない

Centos 7にpostgresql 9.4をインストールできない

私はフォローしていますhttps://www.postgresql.org/download/linux/redhat/Centos 7にpostgrsql 9.4をインストールするには、次のコマンドを使用します。

yum install https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-3.noarch.rpm

結果は次のとおりです。

[root@localhost /]# yum install https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-3.noarch.rpm
Loaded plugins: fastestmirror
pgdg-centos94-9.4-3.noarch.rpm                           | 5.4 kB     00:00     
Examining /var/tmp/yum-root-6jRPAn/pgdg-centos94-9.4-3.noarch.rpm: pgdg-centos94-9.4-3.noarch
/var/tmp/yum-root-6jRPAn/pgdg-centos94-9.4-3.noarch.rpm: does not update installed package.
Error: Nothing to do

その後、実行するとyum install postgresql94次のようになります。

Loading mirror speeds from cached hostfile
 * base: ftp.jaist.ac.jp
 * epel: mirror.premi.st
 * extras: ftp.jaist.ac.jp
 * updates: ftp.jaist.ac.jp
No package postgresql94 available.
Error: Nothing to do

CentOS 7にpostgresql 9.4をインストールする方法は?

ベストアンサー1

キャッシュを更新しましたかyum makecache fast?きれいなシステムではpostgres 9.4を使用できるからです。

# yum install https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-3.noarch.rpm
# yum makecache fast
...
pgdg94                                                   | 4.1 kB     00:00
...
# yum -y list | sort > yl
# grep -i postgresql yl | grep -v base
...
# yum info postgresql94
...

yl(簡単に見つけるためにファイルを保存します。)

おすすめ記事