Como habilitar corretamente o Postgresql no ubuntu 16.04

1

Eu instalei o psql (PostgreSQL) 9.6.1. Quando eu digito

psql 

Eu tenho:

 psql: could not connect to server: No such file or directory
    Is the server running locally and accepting
    connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?

Quando eu digito

netstat -ln

Eu tenho o seguinte:

  Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 0.0.0.0:17500           0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:17600         0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:17603         0.0.0.0:*               LISTEN     
tcp        0      0 127.0.1.1:53            0.0.0.0:*               LISTEN     
tcp6       0      0 :::10137                :::*                    LISTEN     
tcp6       0      0 :::17500                :::*                    LISTEN     
tcp6       0      0 127.0.0.1:8005          :::*                    LISTEN     
tcp6       0      0 :::9000                 :::*                    LISTEN     
tcp6       0      0 :::20080                :::*                    LISTEN     
tcp6       0      0 :::8080                 :::*                    LISTEN     
tcp6       0      0 :::80                   :::*                    LISTEN     
udp        0      0 0.0.0.0:17500           0.0.0.0:*                          
udp        0      0 0.0.0.0:5353            0.0.0.0:*                          
udp        0      0 0.0.0.0:5353            0.0.0.0:*                          
udp        0      0 0.0.0.0:5353            0.0.0.0:*                          
udp        0      0 0.0.0.0:39111           0.0.0.0:*                          
udp        0      0 127.0.1.1:53            0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp        0      0 0.0.0.0:631             0.0.0.0:*                          
udp6       0      0 :::5353                 :::*                               
udp6       0      0 :::5353                 :::*                               
udp6       0      0 :::56552                :::*                               
raw6       0      0 :::58                   :::*                    7 

mostrando que não tenho porta 5432 disponível. Eu tentei usar esta resposta mas não obtive nada. Eu tentei o mesmo método usando o postgres 9.4 e 9.6, mas também não consegui nada diferente. Alguém tem alguma dica para resolver isso? Agradecemos antecipadamente.

    
por GabrielRado 08.11.2016 / 21:44

1 resposta

2

Infelizmente, não consegui fazer isso. A única saída era instalar compilando os binários e assim por diante. Com este método tudo funcionou

    
por GabrielRado 09.11.2016 / 11:27