Skip to content
Knowledge Base

How to remove postgresql in arch linux

Wipe All Database Data (Destructive)

Updated 1 min readLinux Command

bash
sudo systemctl stop postgresql
sudo systemctl disable postgresql
sudo pacman -Rns postgresql

Wipe All Database Data (Destructive)

bash
sudo rm -rf /var/lib/postgres/
linux-command/postgresql.md