gpt4 book ai didi

node.js - 如何确保 NodeJS 在错误请求后恢复?

转载 作者:搜寻专家 更新时间:2023-10-31 22:52:01 25 4
gpt4 key购买 nike

我正在使用 Express 4、Mongoose 和 MongoDB 运行一个 NodeJS 应用程序。然后我收到一个可能是机器人的 GET 请求,响应是 404。通常应用程序在此之后继续运行没有问题,但这次它看起来像是卡住或停滞了。尽管该应用程序在技术上仍在运行,但我的浏览器中不会加载任何页面。重启后恢复正常。

在 testproxy.php 之后它只会发出半个空行。

我知道有一个 forever 模块可以在您的应用程序崩溃时重新启动它,但不确定它在这种情况下是否有用。

enter image description here

编辑:

在我的 app.js 中(我处于开发模式):

app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});

if (app.get('env') === 'development') {
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
});
}

它应该打印 500 错误,但它没有,因为它认为它处理了 404 错误,而且我认为在这种情况下 next(err) 从未被触发。

最佳答案

通常要修复您确实需要一些前台(例如 nodemon )或后台(例如 forever )守护进程,它将处理您的服务器崩溃并重新启动您的 Node 实例。

您需要注意的另一件重要事情是,一旦处于未定义状态,就终止进程。

例如,您可以添加以下中间件:

var serverProcess;

app.use(function(err, req, res, next) {
// regular errors handler here
// process further middleware if error can't be handled in the correct way
next(err);
});

app.use(function(err, req, res, next) {
// close request connection
req.connection.end();

// stop server process
serverProcess.close(function() {
//An unhandled exception means your application is in an undefined state.
//Blindly resuming means anything could happen.
process.exit(1);
});
});

serverProcess = http.listen(httpPort, callback);

您可以提供任何其他逻辑来终止您的进程,但请记住,您的应用程序之外的某些东西应该处理这种情况并正确重启您的服务器。

关于node.js - 如何确保 NodeJS 在错误请求后恢复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36021116/

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