For PostgreSQL 9.5 you need new pgadmin3 version 1.22 – older cannot connect into new database.
(EDIT: changed version of epel – see comment – thanks)
Installation is not exactly straight forward but not difficult:
- download package epel-release-7-8.noarch.rpm:
- wget dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm
- install it:
- yum install epel-release-7-8.noarch.rpm
- install updates:
- yum update
- install pgadmin:
- yum install pgadmin3_95.x86_64
- if you have desktop, pgadmin will be in “Applications / Programming”
- from terminal run it using:
- pgadmin3
Use wget dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm instead since 7.5 no longer exists
Thank you for the post. I use Centos 7.1 and postgres 95.
Everything went correctly but for the last:
sudo yum install pgadmin3_95.x86_64
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
No package pgadmin3_95.x86_64 available.
Error: Nothing to do
What am I missing?
The version of pgAdmin probably differs. Try next steps:
1) sudo yum list | grep pgadmin
This will list entries of pgAdmin in your yum-repo
There will probably be only one entry listed, like:
pgadmin3.x86_64 1.22.1-1.el7 @epel
2) sudo yum install pgadmin3.x86_64
Where the: “pgadmin3.x86_64” was the one that was listed for me