Skip to content

Instantly share code, notes, and snippets.

@dufferzafar
Created February 14, 2015 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dufferzafar/a0286a6c205831478e7a to your computer and use it in GitHub Desktop.
Save dufferzafar/a0286a6c205831478e7a to your computer and use it in GitHub Desktop.
Reset Postgres (Ubuntu 14.04)
#!/bin/sh
sudo service postgresql stop
sudo pg_dropcluster 9.1 main
sudo pg_createcluster 9.1 main
sudo pg_ctlcluster 9.1 main start
sudo service postgresql start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment