gpt4 book ai didi

node.js - Nodejs 未在服务器中运行

转载 作者:太空宇宙 更新时间:2023-11-03 17:23:20 25 4
gpt4 key购买 nike

我正在尝试在我的服务器中启动 nodejs。这是我的 node.js 代码:

var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080, 'xx.xx.xx.xx');
console.log('Server running at http://xx.xx.xx.xx:8080/');

这是我的/etc/nginx/nginx.conf

# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;


events {
worker_connections 1024;
}


http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log /var/log/nginx/access.log main;

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;

include /etc/nginx/mime.types;
default_type application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server{
location / {
proxy_pass http://xx.xx.xx.xx:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
}
#

我还从 default.conf 中删除了几行,因为它显示错误 nginx: [emerg] bind() to [::]:80 failed (98: Address already使用中) 和以下@ rednaw's answer

我正在尝试在我的 xx.xx.xx.xx 服务器中运行 node.js。现在它只显示thishttp://xx.xx.xx.xx/This site can't be reached xx.xx.xx.xx 拒绝连接。 ERR_CONNECTION_REFUSEDhttp://xx.xx.xx.xx:8080/

最佳答案

您必须提及端口号即未使用才能收听。

像这样做一些事情----

var http =  require("http");
function onRequest(request, response) {
console.log("Request received.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
http.createServer(onRequest).listen(8083);

在我的场景中,端口号 8080 已被使用....所以我使用了

另一个端口号,如8083....它有效...

关于node.js - Nodejs 未在服务器中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50058794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com