I'm running Ubuntu 18.04 on an AWS box. I have postgresql 10.22. We just update the rds and, apparently, 10.22 is not compatible with pg server version 14. So I want to upgrade. I ran $ sudo apt-get update $ sudo apt-get install postgresql-client-14 response: E: Unable to locate package postgresql-client-14
I ran $ sudo apt-get install postgresql-client Response: postgresql-client is already the latest version (10+190ubuntu0.1). But https://www.postgresql.org/ftp/source/ shows the latest version as 15.1 so that's wrong.
I ran $ sudo apt-get upgrade postgresql-client Reponse: https://www.postgresql.org/ftp/source/
I'm stuck! How do I update the postgreql-client?
PS I looked at Unable to install files with apt-get: "unable to locate package" and their advice was to do "sudo apt-get update" before the install which is why I did that. What's the NEXT thing after that? ;-)