Could not access the server :pgAdmin 4 - service

services opened to change it automatic
could not connect to server: Connection refused (0x0000274D/) Is the server running on host "127.0.0.1" and accepting TCP/IP connections on port 5432?

Related

Connection refused when trying connecting to postgresql

#Edit
Sorry its not connect to PostgreSQL but im trying to connect to materialized shell but it's getting an error like below
psql: could not connect to server: Connection refused
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 6875?
could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 6875?
how can i solve this?
Thanks.

Postgres pg_hba.conf localhost confusion

I've run into a scenario where an application couldn't see the database. My pg_hba.conf file had the following:
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
Security aside, the application was telling me it couldn't see the database at all, while other clients could see it:
PG::ConnectionBad: could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
(Sequel::DatabaseConnectionError)
I had to point my application to the public IP of that box, and add that in my pg_hba.conf for it to work. Also, it was confused with localhost, as it apparently looked at the IP6 route then the IP4 route, both throwing an error:
Could not spawn process for application /var/www/pints: The application encountered the following error: PG::ConnectionBad: could not connect to server: Connection refused
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432?
(Sequel::DatabaseConnectionError)
Question: What is the best way to force this into using the IP4 route, and to best use IP4 resources to handle communications while on the same box? localhost was blind, as was 127.0.0.1, so I'm confused. Cheers

Can't connect to PostgreSQL 12 Server after installation

so I tried to connect PostgreSQL 12 Server to to create a database for an online shop that I'm building. When it asks me to "enter the password for the user 'postgres' to connect the server - "PostgreSQL 12" i enter the one i provided during the installation but I'm getting the following error:
i get the following error: could not connect to server: Connection refused Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432?...

PostgreSQL refuses connection

My PostgreSQL 9.3 server running on windows 8.1 has started to refuse connections. It worked fine last time I used it two weeks ago, but first it had a fatal configuration file (strange because I had not edited it) - so I reset that to the default. Then it refused my connection.
The data/pg_log directory is empty.
Error message:
could not connect to server: Connection refused (0x0000274D/10061) Is
the server running on host "localhost" (::1) and accepting TCP/IP
connections on port 5432? could not connect to server: Connection
refused (0x0000274D/10061) Is the server running on host "localhost"
(127.0.0.1) and accepting TCP/IP connections on port 5432?
The server is running on localhost and should be accepting connections to port 5432 according to the postgresql.conf file.

Unable to push local database to heroku using pg:push

I am working on a Flask project, and I am ready to deploy my database to Heroku, but I am getting the following error when I try to push my local database to my PG database. I have searched through other StackOverflow posts, but no proposed solutions seem to work. Here is the error message:
pg_dump: [archiver (db)] connection to database "database-name" failed: could not connect to server: Connection refused
`Is the server running on host "localhost" (::1) and accepting`
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (fe80::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432?
pg_restore: [archiver] input file is too short (read 0, expected 5)
psql: could not connect to server: Connection refused
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (fe80::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432?
! Heroku client internal error.
! Search for help at: https://help.heroku.com
! Or report a bug at: https://github.com/heroku/heroku/issues/new
Error: psql failed. exit status 512, output: "" (RuntimeError)
Command: heroku pg:push database-name DATABASE_URL --app app-name
Version: heroku-toolbelt/3.39.5 (x86_64-darwin10.8.0) ruby/1.9.3
Error ID: 020bc5cc53ec48298f24125be8705f53
Any insight would be much appreciated. I have been struggling with this for several hours. Thanks!