How to Install PostgreSQL on Ubuntu 18: A Step-by-Step Tutorial

In this step-by-step tutorial, we will guide you through the process of installing PostgreSQL on an Ubuntu 18.04 LTS system.

Posted on

PostgreSQL, often referred to as Postgres, is a powerful and open-source relational database management system known for its advanced features and reliability. In this step-by-step tutorial, we will guide you through the process of installing PostgreSQL on an Ubuntu 18.04 LTS system. Additionally, we will cover essential database management tasks, providing you with the knowledge to work effectively with PostgreSQL on your Ubuntu-powered server.

Preconditions

Before you begin the installation process, ensure you have met the following prerequisites:

  1. An Ubuntu 18.04 LTS system.
  2. Access to a user account with sudo privileges.
  3. A stable internet connection to download PostgreSQL packages.
  4. Familiarity with basic command-line operations in Ubuntu.

With these prerequisites in place, let’s proceed with the installation.

Installing PostgreSQL on Ubuntu 18

Step 1: Update the System

Start by ensuring your Ubuntu 18.04 LTS system is up to date. Open a terminal and run the following commands:

sudo apt update
sudo apt upgrade

This command will update the package list and upgrade existing packages on your system.

Step 2: Install PostgreSQL

To install PostgreSQL on Ubuntu 18, use the following command:

sudo apt install postgresql postgresql-contrib

This command will install both the PostgreSQL server and additional contrib packages that provide useful extensions and utilities.

Step 3: Start and Enable PostgreSQL

To start the PostgreSQL service and enable it to start automatically at boot, use these commands:

sudo systemctl start postgresql
sudo systemctl enable postgresql

Creating a PostgreSQL User and Database

Access the PostgreSQL Prompt

Let’s access the PostgreSQL command-line tool, psql, to create a new PostgreSQL user and database. Use the following command:

sudo -u postgres psql

Create a PostgreSQL User

Within the psql prompt, you can create a new PostgreSQL user by running the following SQL command. Replace your_user and your_password with your preferred values:

CREATE USER your_user WITH PASSWORD 'your_password';

Create a PostgreSQL Database

Next, create a new PostgreSQL database and assign it to the user you created in the previous step:

CREATE DATABASE your_database;
GRANT ALL PRIVILEGES ON DATABASE your_database TO your_user;

Creating a Table

To illustrate PostgreSQL’s capabilities, let’s create a simple table in the newly created database. Still within the psql prompt, execute the following SQL commands to create a basic table:

\c your_database
CREATE TABLE example (
    id serial PRIMARY KEY,
    name VARCHAR (100),
    age INT
);

Managing the PostgreSQL Service

To manage the PostgreSQL service on Ubuntu 18, you can use the following commands:

  • Start PostgreSQL service: sudo systemctl start postgresql

  • Stop PostgreSQL service: sudo systemctl stop postgresql

  • Restart PostgreSQL service: sudo systemctl restart postgresql

  • Check PostgreSQL service status: sudo systemctl status postgresql

Conclusion

Congratulations! You have successfully installed PostgreSQL on your Ubuntu 18.04 LTS system, created a database, and learned how to perform basic management tasks. PostgreSQL’s extensive feature set makes it a versatile choice for various data storage needs.

With PostgreSQL now installed and running, you are well-prepared to build and manage databases for your Ubuntu-based applications, leveraging its scalability and reliability for your data-driven projects. Explore PostgreSQL’s documentation to discover its full potential and adapt it to your specific requirements.

If you want to learn more about MySQL, please use our PostgreSQL tutorials and PostgreSQL Reference.