Mudanças entre as edições de "Postgres"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
(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...')
(Sem diferença)

Edição das 21h47min de 24 de outubro de 2013

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