Last active
January 14, 2016 19:26
-
-
Save danielbaccin/dedfec0c8eb551ac8a19 to your computer and use it in GitHub Desktop.
intall postgresql no ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install postgresql postgresql-contrib | |
sudo passwd postgres | |
su postgres | |
psql -c "ALTER USER postgres WITH PASSWORD 'nova_senha'" -d template1 | |
http://blog.patrickmaciel.com/instalando-o-postgresql-9-3-no-ubuntu-14-04-lts/ | |
http://alcemirprogramador.blogspot.com.br/2013/07/liberando-acesso-remoto-postgresql.html | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment