Skip to content

Tag: postgresql

Connection refused with postgresql using psycopg2

psycopg2.OperationalError: could not connect to server: Connection refused Is the server running on host “45.32.1XX.2XX” and accepting TCP/IP connections on port 5432? Here,I’ve open my sockets. I googled that I should modify this pg_hba.conf,but in my postgresqlroot files, I didn’t fi…

Django: Query Group By Month

How to calculate total by month without using extra? I’m currently using: django 1.8 postgre 9.3.13 Python 2.7 Example. What I have tried so far. and also this one, the answer seems great but I can’t import the TruncMonth module. Django: Group by date (day, month, year) P.S. I know that this quest…