博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何让nodejs在linux后台运行
阅读量:5888 次
发布时间:2019-06-19

本文共 194 字,大约阅读时间需要 1 分钟。

  hot3.png

 

加入 主文件是 index.js

那么可以用的方法有:

  1.用forever  进行管理

1

2

npm install -g forever

forever start index.js

 

2. 用自带的服务nohub

1

nohup node index.js > myLog.log 2>&1 &

转载于:https://my.oschina.net/lwaif/blog/703346

你可能感兴趣的文章
ASP.NET 回调技术(CallBack)
查看>>
Spark源码分析 – BlockManager
查看>>
JS中的this
查看>>
人生, 不要在别扭的事上纠结
查看>>
C的面向对象编程
查看>>
日志服务器架构设计
查看>>
使用Unity开发Android的几种调试方法
查看>>
C++ 基础笔记(一)
查看>>
编译内核出错:invalid option `abi=aapcs-linux' 解决办法
查看>>
System.Func<>与System.Action<>
查看>>
[翻译] EnterTheMatrix
查看>>
asp.net开源CMS推荐
查看>>
我所思考的生活,致半年后的自己
查看>>
Python 学习书籍推荐
查看>>
csharp skype send message in winform
查看>>
jQuery plugin: Tablesorter 2.0
查看>>
csharp:datagridview enter Half Width and Full Width characters
查看>>
MMORPG 游戏服务器端设计--转载
查看>>
C#实现无标题栏窗体点击任务栏图标正常最小化或还原的解决方法
查看>>
[转]GetLastInputInfo计时用户离开电脑及软件在指定时间锁定等
查看>>