CentOS7にpgadmin4をインストール
そのままではyumでインストールできない。
[base]と[updates]の末尾に以下の行を追加
exclude=postgresql*
PostgreSQL の公式リポジトリを登録
yum -y install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
↓必要かも
yum -y install epel-release
これでyumでインストールできる
yum -y install pgadmin4
httpd(apache)は既にインストールされているものとする
[base]と[updates]の末尾に以下の行を追加
exclude=postgresql*
PostgreSQL の公式リポジトリを登録
yum -y install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
↓必要かも
yum -y install epel-release
これでyumでインストールできる
yum -y install pgadmin4
httpd(apache)は既にインストールされているものとする
関連