Removendo o postgresql antigo após a atualização?

2

Eu atualizei meu postgresql para 9.3 seguindo as instruções encontradas aqui

Quando corro sudo service postgresql start

mostra

 * Starting PostgreSQL 9.1 database server
   ...done.
 * Starting PostgreSQL 9.3 database server
   ...done.

Eu só quero usar o 9.3 agora, (nem preciso iniciar o 9.1) e como faço isso?

    
por eugene 24.09.2013 / 10:12

1 resposta

0

O início automático de um cluster específico do PostgreSQL é especificado pelo seu arquivo start.conf .
Para um cluster principal do postgresql 9.1, é /etc/postgresql/9.1/main/start.conf .

Veja os comentários no início do arquivo:

# Automatic startup configuration
# auto: automatically start/stop the cluster in the init script
# manual: do not start/stop in init scripts, but allow manual startup with
#         pg_ctlcluster
# disabled: do not allow manual startup with pg_ctlcluster (this can be easily
#           circumvented and is only meant to be a small protection for
#           accidents).
    
por Daniel Vérité 01.10.2013 / 00:57