January 2019
Beginner
556 pages
14h 19m
English
If you have a PostgreSQL server already installed and you need to interact with it, you need to install the postgresql-client software package. In order to do so, open a Terminal and execute the following command:
sudo apt-get install postgresql-client-11
With the installation of postgresql-client-11, several tools are installed, including the PostgreSQL interactive Terminal (psql), which is a very powerful interactive frontend tool for PostgreSQL. To see the full list of installed programs, you can browse the installation directory. Note that the installation path might vary depending on the installed PostgreSQL version and the operating system:
$ls /usr/lib/postgresql/11/bin/clusterdb createdb createuser dropdb dropuser ...
Read now
Unlock full access