Question
What is the difference between an ECONNRESET and an ECONNREFUSED error in Postman?
Asked by: USER8769
82 Viewed
82 Answers
Answer (82)
ECONNREFUSED means the server actively refused the connection (e.g., the service isn't listening on the specified port). ECONNRESET means the server abruptly closed the connection after it had been established or attempted. ECONNREFUSED is a server-side 'no service' error, while ECONNRESET is a server-side 'connection terminated' error.