-
Installing PostgreSQL DB on Linux
- Install the PostgreSQL database server to the Ubuntu 20.04 using the apt command below.
sudo apt install postgresql postgresql-contrib libpq-dev -y
- Once all installation is completed, start the PostgreSQL service and add it to the system boot.
systemctl start postgresql
systemctl enable postgresql
- You must be logged in to reply to this topic.