Skip to content
  • Solutions
    By Role
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    By Infrastructure
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
  • Product
    • Plesk Features
    • Plesk Editions
    • What’s new
    • Pricing
    • Roadmap
    • Lifecycle Policy
    • Extensions Catalogue
  • Pricing
  • Extensions
    Featured Extensions
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    Bundles and packs:
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack

    See all Extensions

  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
Plesk 360 login
Free Trial

Knowledge Base

Is it possible to install PostgreSQL 10.x or higher with Plesk?

 
almalinuxdatabasedatabase serverdatabasesdebian

Question

Is it possible to install PostgreSQL 10.x or higher with Plesk?

Answer

Yes, Plesk supports PostgreSQL up to version 15.

Use the following steps to install PostgreSQL 10.x or higher with Plesk:

Installing PostgreSQL 10.X or higher on RHEL/AlmaLinux 8-9

  1. Connect to the server via SSH

  2. Get the PostgreSQL repository from https://www.postgresql.org/download/linux/redhat/

  3. Install the PostgreSQL repository (replace link with the one obtained in previous step):

    # dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm

  4. Disable the built-in PostgreSQL module:

    # dnf -qy module disable postgresql

  5. Install PostgreSQL (replace XX with the desired version):

    # dnf install -y postgresqlXX-server

  6. Initialize the database:

    # /usr/pgsql-XX/bin/postgresql-XX-setup initdb

  7. Set PostgreSQL to start on boot:

    # systemctl enable postgresql-XX

  8. Start PostgreSQL:

    # systemctl start postgresql-XX

  9. Create a symlink between installed version and postgresql service:

    # ln -s /usr/lib/systemd/system/postgresql-XX.service /usr/lib/systemd/system/postgresql.service

  10. Switch to user postgres:

    # su - postgres

  11. Set a password for the user:

    # psql -c "ALTER USER postgres WITH PASSWORD 'YourSecurePassword';"

  12. Log into Plesk

  13. Go to Tools & Settings > Database Servers

  14. Press Add Database Server

  15. Add PostgreSQL as a remote database server with the following values:

    • Database server type: PostgreSQL
    • Host name or IP address: 127.0.0.1
    • Check the box Use this server as default for PostgreSQL
    • Username: postgres
    • Password: password from step 11
  16. Press OK

Installing PostgreSQL 10.X or higher on Debian/Ubuntu

  1. Connect to the server via SSH

  2. Install necessary packages:

    # apt install curl ca-certificates postgresql-common

  3. Install the PostgreSQL repository:

    # /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh

  4. Update repository data:

    # apt update

  5. Install PostgreSQL (replace XX with the desired version):

    # apt install postgresql-XX

  6. Set PostgreSQL to start on boot:

    # systemctl enable postgresql

  7. Start PostgreSQL:

    # systemctl start postgresql

  8. Switch to user postgres:

    # su - postgres

  9. Set a password for the user:

    # psql -c "ALTER USER postgres WITH PASSWORD 'YourSecurePassword';"

  10. Log into Plesk

  11. Go to Tools & Settings > Database Servers

  12. Press Add Database Server

  13. Add PostgreSQL as a remote database server with the following values:

    • Database server type: PostgreSQL
    • Host name or IP address: 127.0.0.1
    • Check the box Use this server as default for PostgreSQL
    • Username: postgres
    • Password: password from step 9
  14. Press OK

Tweet
Share
Share
Email
0 Shares
Read the full article
Related Posts

Plesk with Centralized Database and Network File System

Read More »

Recommended OSs for Plesk

Read More »

CentOS Project Announces Early End-of-Life Date for CentOS 8

Read More »
Knowledge Base

How to enable remote access to MySQL/MariaDB server in Plesk?

Read More »

Cannot create/restore a backup of PostgreSQL database: Cannot run PostgreSQL client tools; make sure that they are installed

Read More »

 An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry ‘X’ for key ‘PRIMARY’

Read More »

How to upgrade MySQL 5.5 to 5.6/5.7 or MariaDB 5.5 to 10.x on Linux

Read More »

Hosting Wiki

  • Django
  • Server Redundancy
  • Linux Containers
  • Google Cloud CDN
  • PostgreSQL
  • Bare Metal Server
  • Oracle VM Server
  • Server Virtualization Software
  • Windows Server
  • Linux
  • JavaScript
  • MongoDB
  • SQL
  • Plesk
  • SQL database
  • NoSQL Database
  • Web Server
  • DNS Server
  • IPv6
  • IPv4
  • SIP
  • SSH
  • UDP/IP
  • TCP/IP
  • HTTP
X-twitter Linkedin Youtube Reddit Github
  • Product
  • Login
  • Pricing
  • Editions
  • For Partners
  • Partner Program
  • Contributor Program
  • Affiliate Program
  • Plesk University
  • Company
  • Blog
  • Careers
  • Events
  • About Plesk
  • Our Brand
  • Resources
  • User and Admin guides
  • Help Center
  • Migrate to Plesk
  • Contact Us
  • Hosting Wiki
  • Forum
  • Legal
  • Legal
  • Privacy Policy
  • Imprint

© 2025 WebPros International GmbH

Part of the WebPros®  Family