我编写了一个简单的代码并将其保存在try.js文件中。
var http = require('http');
var makeRequest = function(message) {
var options = {
host: 'localhost', port: 8080, path: '/', method: 'POST'
}
var request = http.request(options, function(response){
response.on('data', function(data){
console.log(data);
});
});
request.write(message);
request.end();
}
makeRequest("Here's looking at you, kid.");
当我通过终端运行它时会出错
throw er; // Unhandled 'error' event,
Error: connect ECONNREFUSED
at errnoException (net.js:884:11)
at Object.afterConnect [as oncomplete] (net.js:875:19)error' event
答案 0 :(得分:42)
对我来说,问题是另一个实例正在运行。搜索正在运行的其他节点实例并将其终止。它应该在之后正确恢复。
答案 1 :(得分:10)
这种情况正在发生,因为没有任何东西正在侦听localhost:8080。以下是如何处理请求错误How to catch http client request exceptions in node.js
的示例答案 2 :(得分:6)
另一台服务器在同一端口8080上运行,因此您需要终止并启动您的实例。
查找正在运行的实例
$ netstat -nlp | grep 8080
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp6 0 0 :::8881 :::* LISTEN 28207/node
使用pid杀死现有服务器实例
$ kill -9 28207
启动实例
$ node server.js
答案 3 :(得分:0)
更改端口号。因为您的端口已经在运行。
端口号如:8000,8001,3000,3001,8080 ....
app.listen(3030,()=>{})
(或) 杀死你的端口号。如果您使用Ubuntu OS来执行此步骤。
答案 4 :(得分:0)
另一台服务器正在同一端口8080上运行,因此请更改此代码中的端口或终止端口8080并重新启动它。
答案 5 :(得分:0)
不同的进程已经在同一端口上运行。要么终止正在运行的进程,要么更改当前代码中的端口号。您的问题将得到解决!