Installing pgadmin on RHEL 7
Installing pgadmin on RHEL 7 is quite a strait forward process especially if you are comfortable at a bash prompt.
To install pgadmin on Red Hat Enterprise Linux 7 simply run the following:
viĀ /etc/yum/pluginconf.d/rhnplugin.conf
Add the following line to the bottom:
exclude=postgresql*
Run:
yum install pgadmin3* –skip-broken
This will use the yum installer to install all packages starting with the name pgadmin3 and skip anything that’s broken so that you don’t have to do any additional cleanup after the installation.
Great help Thanks