Published on

How to install Postgres Client in Ubuntu server

Authors

Sometimes, you might want to install just the Postgres client on the server. For example, you need to use a private AWS RDS database, which you can access only via AWS EC2.

For such cases, you can install them using apt-get like this:

sudo apt-get install -y postgresql-client

Happy installing client!