How to Install and Configure PostgreSQL on Your Dedicated Server

PostgreSQL is a powerful, open-source relational database management system. It is commonly used to manage large-scale databases, offering high performance, scalability, and flexibility. In this guide, you will learn how to install and configure PostgreSQL on your dedicated server.


Step 1: Update Your Server’s Package Repository

Before installing PostgreSQL, it's essential to ensure that your server’s package repository is up-to-date. This helps to avoid errors and ensures you are installing the latest available version.

  • Run the following command to update the package repository:
    sudo apt update
    

Step 2: Install PostgreSQL

Once your package repository is updated, you can proceed with the installation of PostgreSQL.

  • Install PostgreSQL by running the following command:

    sudo apt install postgresql postgresql-contrib
    
    • postgresql-contrib is an optional package that contains additional features and extensions useful for PostgreSQL.
  • After the installation is complete, PostgreSQL should automatically start running. You can verify its status by executing:

    sudo systemctl status postgresql
    
    • The output should indicate that PostgreSQL is active and running.

Step 3: Switch to the PostgreSQL User

PostgreSQL creates a default user named postgres during installation. To interact with PostgreSQL, you need to switch to the postgres user.

  • Run the following command:
    sudo -i -u postgres
    

Step 4: Access the PostgreSQL Command Line

Now that you're logged in as the postgres user, you can access the PostgreSQL command-line interface (CLI).

  • To access the PostgreSQL prompt, use the following command:

    psql
    
    • You should now be in the PostgreSQL CLI, where you can start running SQL commands.

Step 5: Set a Password for the PostgreSQL User

By default, the postgres user does not have a password, so it's important to set one for security.

  • Run the following command to set the password for the postgres user:

    ALTER USER postgres WITH PASSWORD 'yourpassword';
    
    • Replace yourpassword with a strong password of your choice.
  • Exit the PostgreSQL prompt by typing:

    \q
    

Step 6: Configure PostgreSQL to Accept Remote Connections (Optional)

By default, PostgreSQL only accepts connections from the local machine. If you need to allow remote connections to your PostgreSQL server, follow these steps:

  • Edit the PostgreSQL Configuration File:

    • Open the PostgreSQL configuration file in your preferred text editor:

      sudo nano /etc/postgresql/12/main/postgresql.conf
      
    • Look for the line #listen_addresses = 'localhost'. Uncomment it and change the value to:

      listen_addresses = '*'
      
    • This allows PostgreSQL to listen for connections on all IP addresses.

  • Configure pg_hba.conf to Allow Remote Connections:

    • Open the pg_hba.conf file:

      sudo nano /etc/postgresql/12/main/pg_hba.conf
      
    • Add the following line at the bottom to allow connections from any IP address (replace xx.xx.xx.xx with the IP address you want to allow):

      host    all             all             xx.xx.xx.xx/32          md5
      
    • If you want to allow connections from any host, use 0.0.0.0/0 instead of a specific IP range:

      host    all             all             0.0.0.0/0               md5
      
  • Restart PostgreSQL:

    • After making changes, restart PostgreSQL to apply the changes:
      sudo systemctl restart postgresql
      

Step 7: Create a New Database and User

  • Create a Database:

    • Log in to the PostgreSQL command line again:

      sudo -i -u postgres
      psql
      
    • To create a new database, use the following SQL command:

      CREATE DATABASE mydb;
      
      • Replace mydb with your desired database name.
  • Create a New User:

    • To create a new user, use the following SQL command:

      CREATE USER myuser WITH PASSWORD 'mypassword';
      
      • Replace myuser with your desired username, and mypassword with a strong password.
  • Grant Privileges:

    • To allow the new user to interact with the database, grant privileges:
      GRANT ALL PRIVILEGES ON DATABASE mydb TO myuser;
      
  • Exit PostgreSQL:

    • Exit the PostgreSQL command line:
      \q
      

Step 8: Test the Connection to PostgreSQL

To ensure that PostgreSQL is working correctly, test the connection using the credentials you just created.

  • Run the following command to connect to the database:
    psql -h localhost -U myuser -d mydb
    
  • Replace myuser with the username and mydb with the database name you created.
  • If the connection is successful, you should be logged into PostgreSQL, where you can start running SQL queries.

Step 9: Enable PostgreSQL to Start on Boot

By default, PostgreSQL is configured to start automatically when the server boots. However, it’s a good practice to ensure this setting is enabled.

  • Run the following command to enable PostgreSQL to start on boot:
    sudo systemctl enable postgresql
    

Step 10: Maintain PostgreSQL Security

  • Keep Your Server Updated: Regularly update PostgreSQL and your server software to protect against security vulnerabilities:

    sudo apt update
    sudo apt upgrade
    
  • Secure Your PostgreSQL Installation: Use tools like fail2ban or firewall configurations to block unauthorized access to your PostgreSQL server.

  • Backup Your Databases Regularly: Schedule regular backups to prevent data loss. Use the following command to back up a database:

    pg_dump mydb > mydb_backup.sql
    

By following these steps, you will have PostgreSQL installed, configured, and ready to use on your dedicated server. Regular maintenance and monitoring will ensure that your PostgreSQL database continues to run efficiently.

Was this answer helpful? 0 Users Found This Useful (0 Votes)