gpt4 book ai didi

node.js - NodeJS Linux Ubuntu 运行问题

转载 作者:太空宇宙 更新时间:2023-11-04 10:33:13 25 4
gpt4 key购买 nike

当我关闭 putty 以关闭连接时,我的 nodejs 将关闭。我该如何解决?

但是当终端关闭时,我的 Node 服务器停止了。我有 express、socket.io 和 nodemon 服务。我正在从 nodemon 运行。

sudo apt-get install nodejs npm
sudo apt-get install npm
sudo apt-get install nodejs-legacy
node myServer.js

最佳答案

您正在将 node 作为 shell 的子进程运行。一旦 shell 终止,它的所有子项也将终止,在您的情况下 - node 服务器。要将它从 shell 中分离出来,您可以使用 & 运算符在后台运行它:

$ node myServer.js &

关于node.js - NodeJS Linux Ubuntu 运行问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38821388/

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