nodejs 断开SSH 服务就退出了 怎么让它一直运行啊?
 发布于 12 年前  作者 guotingchaopr  11217 次预览  最后一次回复是 12 年前  来自  
12 回复
hexie

node.js forever模块

bigfang

感觉LZ需要的是这个

(node app &)

或者

nohup node app &
seasonx4

nohup node xxx.js > /tmp/log.txt 2>&1 &

guotingchaopr

这个只能Kill掉么?

guotingchaopr

我的0.10 .7 nodejs版本使用forever 不知道为什么运行不来

leapon

在 ubuntu 上,用 upstart 很方便。

我的 upstart 的例子

fetch.conf is a config file for upstart

sudo cp fetch.conf /etc/init/fetch.conf

sudo start fetch sudo stop fetch

fetch.conf 内容:

#!upstart
description "Fetch server"

start on started mountall
stop on shutdown

# Automatically Respawn:
respawn 
respawn limit 99 5

exec node /home/user/server.js -app=fetch >> /var/log/fetch.log 2>&1

http://caolanmcmahon.com/posts/deploying_node_js_with_upstart/

wannianchuan

@guotingchaopr 你看看是不是命令的事啊,我用forever start,启动之后程序就能一直运行。 命令如下:forever start app.js

guotingchaopr

谢谢 这个确实非常棒