PostgreSQL
PostgreSQL is an open-source relational database.
Installation
sudo apt install postgresql postgresql-contrib -y
sudo systemctl enable postgresql
sudo systemctl start postgresqlUseful Commands
sudo -i -u postgres psql
sudo -u postgres psql -c "\l"
sudo -u postgres psql -c "\du"
sudo systemctl status postgresql
sudo systemctl restart postgresql