I'm trying to upgrade a server from postgresql-9.1 to version 9.6.
I would normally install something with apt-get install but I'm working with a server at work that doesn't have direct internet access. I'm also trying to avoid an apt-get update (that seems to be part the instructions for installing with apt-get) because, when I previously ran this it caused problems with the samba shares on the server.
For these reason I have attempted to install postgressql-9.6 from source. The installation appeared to go smoothly (./configure, make and make install ran smoothly) and I received a message suggesting postgres-9.6 had been successful installed. However, when I run:
sudo aptitude search postgresql | grep ^i
All I can see is the postgresql-9.1 version. There is also nothing that suggests version 9.6 has been installed in /etc/postgresql/ or /usr/lib/postgresql/.
How is it possible that I'm getting installation success messages, but not a sniff of the actual program on the server?