How to Install PostgreSQL and pgAdmin4 in Ubuntu 20.04

This guide will walk you through the instructions to install PostgreSQL 12 relational and object-oriented database management systems and pgAdmin4, a commonly-used web-based PostgreSQL database server administration tool. We will show how to install the latest version of pgAdmin4 that is v4.23.

Prerequisites:

Let’s get started…

Installing PostgreSQL in Ubuntu 20.04

Log into your Ubuntu system and update the system software packages using the following apt command.

$ sudo apt update

Now install the latest version of PostgreSQL from the default Ubuntu repositories.

$ sudo apt install postgresql

During the installation, the installer will create a new PostgreSQL cluster (a collection of databases that will be managed by a single server instance), thus initialize the database. The default data directory is /var/lib/postgresql/12/main and the configurations files are stored in the /etc/postgresql/12/main directory.

After PostgreSQL installed, you can confirm that the PostgreSQL service is active, running and is enabled under systemd using the following systemctl commands:

$ sudo systemctl is-active postgresql
$ sudo systemctl is-enabled postgresql
$ sudo systemctl status postgresql
Check PostgreSQL Status
Check PostgreSQL Status

Also, confirm that the Postgresql server is ready to accept connections from clients as follows:

$ sudo pg_isready
PostgreSQL Accepting Client Connections
PostgreSQL Accepting Client Connections

Creating Database in PostgreSQL

To create a new database in PostgreSQL, you need to access the PostgreSQL database shell (psql) program. First, switch to the postgres system user account and run the psql command as follows:

$ sudo su - postgres
$ psql
postgres=# 

Now create a new database and a user using the following commands.

postgres=# CREATE USER tecmint WITH PASSWORD 'securep@wd';
postgres=# CREATE DATABASE tecmintdb;
postgres=# GRANT ALL PRIVILEGES ON DATABASE tecmintdb to tecmint;
postgres=# \q
Create a Database in PostgreSQL
Create a Database in PostgreSQL

Configuring PostgreSQL Client Authentication

PostgreSQL uses client authentication to decide which user accounts can connect to which databases from which hosts and this is controlled by settings in the client authentication configuration file, which on Ubuntu is located at /etc/postgresql/12/main/pg_hba.conf.

Open this file using your favorite text editor as shown.

$ sudo vim /etc/postgresql/12/main/pg_hba.conf

PostgreSQL uses many types of client authentication methods including peer, ident, password, and md5 (read the PostgreSQL 12 documentation for a detailed explanation of each method).

md5 is the most secure and recommended because it requires the client to supply a double-MD5-hashed password for authentication. So, ensure that the entries below have md5 as the under method:

host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                	md5

After making changes in the Client Authentication configuration file, you will need to restart the PostgreSQL service.

$ sudo systemctl restart postgresql

Installing pgAdmin4 in Ubuntu

pgAdmin4 is not available in the Ubuntu repositories. We need to install it from the pgAdmin4 APT repository. Start by setting up the repository. Add the public key for the repository and create the repository configuration file.

 
$ curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add
$ sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list && apt update'

Then install pgAdmin4,

$sudo apt install pgadmin4

The above command will install numerous required packages including Apache2 webserver to serve the pgadmin4-web application in web mode.

Once the installation is complete, run the web setup script which ships with the pgdmin4 binary package, to configure the system to run in web mode. You will be prompted to create a pgAdmin4 login email and password as shown in the screenshot below.

This script will configure Apache2 to serve the pgAdmin4 web application which involves enabling the WSGI module and configuring the pgAdmin application to mount at pgadmin4 on the webserver so you can access it at:

http://SERVER_IP/pgadmin4

It also restarts the Apache2 service to apply the recent changes.

Remember to replace [email protected] with your email address and set a strong secure password as well:

$ sudo /usr/pgadmin4/bin/setup-web.sh
Set Up PgAdmin in Ubuntu
Set Up PgAdmin in Ubuntu

Accessing pgAdmin4 Web Interface

To access the pgAdmin4 web application interface, open a web browser, and use the following address to navigate:

http://SERVER_IP/pgadmin4

Once the login page loads, enter the email address and password you created in the previous section while configuring the pgAdmin4 to run in web mode.

PgAdmin Login
PgAdmin Login

After a successful login, you will be land in the pgAdmin4 web application dashboard. To connect to a server, click on Add New Server as highlighted in the following screenshot.

Add New Server in PgAdmin
Add New Server in PgAdmin

Next, enter the connection in General settings (Name, Server group, and a comment). Then click Connections as highlighted in the following screenshot.

Add New Connection in PgAdmin
Add New Connection in PgAdmin

Next, enter the PostgreSQL database server hostname/address, Port number (leave 5432 to use default), select the Maintenance database (which should be postgres), enter the database username and password.

PostgreSQL Database Settings
PostgreSQL Database Settings

If the database access credentials are OK and the server-client authentication configuration is too, pgAdmin4 should successfully connect to the database server.

PostgreSQL Databases
PostgreSQL Databases

That’s all! For more information, see the PostgreSQL 12 documentation and pgAdmin 4 documentation. Remember to share your thoughts with us via the comment section below.

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

30 thoughts on “How to Install PostgreSQL and pgAdmin4 in Ubuntu 20.04”

  1. Thanks, it’s a really useful walk-through for someone just starting to learn databases (data science course) and new to Ubuntu. The only point I got stuck on was the “run the web setup script which ships with the pgdmin4 binary package, to configure the system to run in web mode”.

    I had to search elsewhere to find what this script was and how to run it, the following worked:

    Found at: https://www.pgadmin.org/download/pgadmin-4-rpm/

    sudo /usr/pgadmin4/bin/setup-web.sh
    
    Reply
    • @Paul,

      You’re welcome! I’m glad to hear that the issue has been resolved and that pgAdmin4 is now working in remote mode. It’s often the case that minor settings adjustments can make a significant difference in resolving connectivity problems.

      Reply
  2. I followed the tutorial, everything works, however, when I try to connect from another machine, it crashes. I have a vmware on which a debian is installed, from the physical machine I tried to connect to the address http://debian_ip_address_server/pgadmin4, unfortunately without result.

    Reply
    • @Paul,

      If you are experiencing issues connecting to pgAdmin4 on a Debian virtual machine (VM) from another machine, make sure that the network configuration of the VM is correctly set to bridged mode, allowing it to obtain an IP address on the same network as your physical machine.

      Check the firewall settings on the VM to make sure that port 80 or the port specified for pgAdmin4 is open in your firewall rules.

      Also, check the web server logs for any errors or misconfigurations that might be causing the crash.

      Reply
  3. Hi, I am using Ubuntu on wsl2, and im facing an error after I run the command:

    $ sudo /usr/pgadmin4/bin/setup-web.sh
    

    Error:

    "System has not been booted with systemd as init system (PID 1). Can't operate.
    Failed to connect to bus: Host is down
    Error starting apache2. Please check the systemd logs" 
    

    Does it seem to be something to do with apache2, any ideas?

    Reply
  4. Thanks for that great step-by-step guidance. Would you be able to add the postgresql extension install to that tutorial?

    Reply
  5. $ sudo /usr/pgadmin4/bin/setup-web.sh
    

    failed, couldn’t find module “flask” even after I installed it system-wide for both user and root.

    Seems this script is stuck on python3.8 and no longer works on python3.9-based distros

    Reply
  6. This simply doesn’t work at all. There is no pgadmin4 application installed and nothing running at http://localhost/pgadmin4.

    The configuration screens that you show during installation weren’t there.

    Reply
      • The problem was you showed accessing pgadmin4 via the web browser before running the setup-web.sh. It would be clearer if you didn’t show http://SERVER_IP/pgadmin4 before running the setup script.

        You can delete my comment.

        Reply
  7. Hi Guys, I am getting this when trying to start the shell script for pgadmin4.

    cabolba@LAPTOP-HQU5QQSN:~$ sudo /usr/pgadmin4/bin/setup-web.sh
    Setting up pgAdmin 4 in web mode on a Debian based platform…
    Creating configuration database…
    pgAdmin 4 – Application Initialisation
    ======================================

    Creating storage and log directories…
    We can now configure the Apache Web server for you. This involves enabling the wsgi module and configuring the pgAdmin 4 application to mount at /pgadmin4. Do you wish to continue (y/n)? y
    The Apache web server is running and must be restarted for the pgAdmin 4 installation to complete. Continue (y/n)? y
    The system has not been booted with systemd as init system (PID 1). Can’t operate.
    Failed to connect to bus: Host is down
    Error restarting apache2. Please check the systemd logs

    Reply
  8. This was thorough clear instructions. I managed to install Postgres and pgadmin4. Thank you

    However, you asked me to set a strong password, which I did and I have forgotten it. How do I reset the pgadmin password because I have failed? I tried password recovery through the pgadmin4 GUI but I get an error to do with SMTP.

    Is there a way to reset the pgadmin4 password through the console?

    Reply
    • @Emanuel,

      Set the password again by following the “Creating Database in PostgreSQL” section as shown in the article…

      Reply
  9. As a noob Ubuntu and Linux user in general, the instructions are so simple and straightforward!

    Thank you so much!

    You saved me in my desperate times!

    Reply
  10. Thanks for the great step-by-step instructions! Except for the first step “sudo apt install postgresql” which didn’t work on my installation! I had to fetch it from the postgresql.org site. Everything else worked!!

    Reply

Leave a Reply to Ravi Saive Cancel reply

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.