PostgreSQL is a popular database software used by many websites & organizations. However, sometimes you may need to remove PostgreSQL completely from your system, in case of issues. In this article, we will learn how to completely uninstall PostgreSQL from Ubuntu.
How to Completely Uninstall PostgreSQL from Ubuntu
Here are the steps to completely uninstall PostgreSQL from Ubuntu.
1. Uninstall PostgreSQL
Open terminal and run the following command to remove PostgreSQL from Ubuntu.
$ sudo apt-get --purge remove postgresql
2. List Dependent Packages
Next, run the following command to list dependent packages.
$ dpkg -l | grep postgres
Remove the packages listed in output using the following command.
$ apt-get --purge remove package1 package2 ...
3. Verify Uninstallation
You can verify that PostgreSQL is removed by running the following command.
$ whereis postgres $ whereis postgresql
That’s it. In this short article, we have seen how to quickly remove PostgreSQL from Ubuntu.
Also read:
How to Setup NTP Server & Client in Ubuntu
How to Add User in Sudoers in Linux
How to Install Brotli for NGINX in Ubuntu
How to Uninstall Docker in CentOS
Related posts:
How to Fix dpkg Was Interrupted, You Must Manually Run Sudo
How to Find Files Larger Than 1GB
How to Check Remote SSL Certificate in Linux
How to Uninstall Package in CentOS
How to Disable Commands in Linux
How to Setup SSH Keys in Linux
How to Use Boolean Variables in Shell Script
How to Create ISO Image from CD in Linux

Sreeram has more than 10 years of experience in web development, Python, Linux, SQL and database programming.