Skip to content

Instantly share code, notes, and snippets.

@kennethlove
Created October 12, 2012 23:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennethlove/3882335 to your computer and use it in GitHub Desktop.
Save kennethlove/3882335 to your computer and use it in GitHub Desktop.
GSWD Chef needs
  • Install build-essentials, git-core, vim, mercurial
  • Install postgresql-server
  • Edit /etc/postgresql/9.1/main/postegresql.conf
    • Change listen_address to = '*'
  • Edit /etc/postgresql/9.1/main/pg_hba.conf
    • Add new line host all all 10.0.0.0/16 md5
  • Add new postgresql superuser named "vagrant" with password "vagrant"
    • sudo su postgres
    • createuser -s -W vagrant
  • Add postgresql to defaults so it runs at boot
  • Download newest redis distro to /opt & decompress
  • Run make && sudo make install
  • Run utils/install_script.sh and accept all defaults
  • Add redis to defaults so it runs at boot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment