Postgres

De MochilaWiki
Revisão de 21h47min de 24 de outubro de 2013 por Banto Palmarino (discussão | contribs) (Criou página com '== instalando == <source lang="bash"> apt-get install postgres </source> == frontend == <source lang="bash"> apt-get install pgadmin3 </source> == trocando a senha == <sourc...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegaçãoIr para pesquisar

instalando

apt-get install postgres

frontend

apt-get install pgadmin3

trocando a senha

# su - postgres
$ psql postgres
postgres=# alter user postgres with encrypted password 'sua-senha';
postgres=# \q