我们有一个node.js/express/socket.io服务器,由Upstart管理。通过在bash:'stop nodejs‘中运行此命令来停止服务器,其中nodejs是一个具有以下内容的Upstart脚本:
#!upstart
description "node.js"
# Start the job
start on runlevel [2345]
# Stop the job
stop on runlevel [016]
# Restart the process if it dies
respawn
script
cd /var/www/n