Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在为我的 node.js 运行,这很棒,但是当服务器重新启动时,我必须重新运行命令。是否有关于如何在重新启动或启动时使其永远自动启动脚本的任何建议。
让我们说它
永远 /var/www/server.js
谢谢!
编辑 crontab:
$ sudo crontab -e
第一次它会询问您希望使用哪个编辑器进行编辑。
在编辑器中添加以下行:
@reboot /usr/local/bin/forever start /your/path/to/your/app.js
保存文件。
重启。