Ejemplo 1: no se pudo conectar al servidor: Conexión rechazada ¿El servidor se está ejecutando en el host y acepta conexiones TCP / IP en el puerto 5432?
cd /etc/postgresql/9.x/main/
------- open file named postgresql.conf
sudo nano postgresql.conf
------- add this line to that file
listen_addresses = '*'
------- then open file named pg_hba.conf
sudo nano pg_hba.conf
------- and add this line to that file
host all all 0.0.0.0/0 md5
------- restart your server
sudo /etc/init.d/postgresql restart
Ejemplo 2: psycopg2.OperationalError: no se pudo conectar al servidor: Conexión rechazada ¿El servidor se está ejecutando en el host “127.0.0.1” y acepta conexiones TCP / IP en el puerto 5432?
# to over ride this error you should up and run server
service postgresql start
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)