I have a node process running locally on port 8888. I have a second node process running locally on port 8889. When I make an http request to, GET, to localhost:8889 from localhost:8888, I get an error : Node.js Error: connect ECONNREFUSED
but if from localhost I send an http request remote:8889, all is well. I use the request node package.
What is the issue here? Not finding a whole lot of useful answers.
Has anyone seen this?
Have you tried creating a simple server on port 8889 and hitting it from your browser or something like postman to test the port's availability?
Do you have any firewall rules that might be blocking inbound on :8889 (or absence of rules that would be allowing it)?
noah edward hall
lets do it again
can you post some code?