Skip to content

Instantly share code, notes, and snippets.

@Atlas7
Last active March 23, 2023 13:02
Show Gist options
  • Star 77 You must be signed in to star a gist
  • Fork 21 You must be signed in to fork a gist
  • Save Atlas7/b1a40a2ffd85728b33e7 to your computer and use it in GitHub Desktop.
Save Atlas7/b1a40a2ffd85728b33e7 to your computer and use it in GitHub Desktop.
Note - How completely uninstall PostgreSQL 9.X on Mac OSX

This blog post has helped me clean up my postgres development environment on Mac. So making a copy!

How completely uninstall PostgreSQL 9.X on Mac OSX

This article is referenced from stackoverflow:

If installed PostgreSQL with homebrew , enter brew uninstall postgresql

If you used the EnterpriseDB installer , follow the following step.

Run the uninstaller on terminal window

sudo /Library/PostgreSQL/9.X/uninstall-postgresql.app/Contents/MacOS/installbuilder.sh

If installed with Postgres Installer, do:

open /Library/PostgreSQL/9.X/uninstall-postgresql.app

Remove the PostgreSQL and data folders. The Wizard will notify you that these were not removed.

sudo rm -rf /Library/PostgreSQL

Remove the ini file:

sudo rm /etc/postgres-reg.ini

Remove the PostgreSQL user using System Preferences -> Users & Groups.

Unlock the settings panel by clicking on the padlock and entering your password.
Select the PostgreSQL user and click on the minus button.
Restore your shared memory settings: sudo rm /etc/sysctl.conf
@kadirmaev
Copy link

You are the best! Thanks a lot!

@yannlr37
Copy link

yannlr37 commented Oct 5, 2018

Thanks !

@jlbokass
Copy link

jlbokass commented Oct 8, 2018

Thank you ! it works very well!

@ec-wagner
Copy link

Note for macOS High Sierra

  • last step: sudo rm /etc/sysctl.conf --> error: /etc/sysctl.conf: No such file or directory

@Makesh
Copy link

Makesh commented Oct 25, 2018

Thank you !!!!!!!!!!!!!!

@sugarac
Copy link

sugarac commented Oct 31, 2018

shit. useless

@kissferenc
Copy link

thx!

@taka2477
Copy link

Thx a lot!!

@kerimsari
Copy link

Thank you!! Mille Merci...

@mbifulco
Copy link

So glad I found this. Thank you!

@Ibrahimahadi
Copy link

NICE

@rlscode
Copy link

rlscode commented May 22, 2019

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment