I have 2 different versions of PostgreSQL installed on my system (Ubuntu Lucid):
- /var/lib/postgresql/8.4
- /var/lib/postgresql/9.0
By default, when I run a PostgreSQL command such as createdb or psql, the 9.0 version is used.
How do I configure my system to use the 8.4 version by default instead?
3 Answers
The various PostgreSQL command line tools will talk to the server listening on the default port (5432) by default.
You can determine which port each server is listening on by looking for the port variable in the /etc/postgresql/$VERSION/main/postgresql.conf file for the relevant server.
To get the command line tools to talk to the other server by default, you have two options:
First, you could switch the ports the two servers are listening on by editing the previously mentioned configuration files and then restarting both servers (you'll probably want to stop each one before starting either).
Alternatively, you can set the PGPORT environment variable to the port number of the desired default server. That should affect all applications using the PostgreSQL client library.
To list the contents of each database cluster use psql -l -p PORT_NUMBER. To migrate data see section "24.4. Migration Between Releases" in the PostgreSQL documentation.
Deleting old versions of PostgreSQL saves wear and tear on laptops & SSDs, through reduction of disk writes.
1If you want to get rid of a version so the other one becomes default...
# see what you've got...
pg_lsclusters
# drop v13
sudo pg_dropcluster 13 main --stop 4 As James/Bryce correctly point out, the two versions will run on different ports.
However the command line utilities will also be run as one version or the other. For example pg_dump --version might give you an unexpected result.
You can configure this in a file called ~/.postgresqlrc
First you need to know the cluster names, to find this, run the following command:
$ pg_lsclustersThis will output the clusters available eg on my system I'm running 9.6 and 13:
Ver Cluster Port Status Owner Data directory Log file
9.6 main 5432 online postgres /var/lib/postgresql/9.6/main /var/log/postgresql/postgresql-9.6-main.log
13 main 5433 online postgres /var/lib/postgresql/13/main /var/log/postgresql/postgresql-13-main.logThen create the file ~/.postgresqlrc and put the following to control the default version used:
# Version Clustername Database
13 main postgresChange 13 to the version you want to run as default, in the case of this question that will be 8.4 or 9.0.