linux服务器后台运行nodeJS项目
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
最近在部署nodeJS项目的时候 , 遇到了一些问题 , 整理了一下 .
希望能解决大家的一些困扰.
1:关于连接服务器
nodeJS的server.js文件里面 ,
app.listen(8080,'172.17.1.**', () => {
console.log('server is running...')
})
注意 , nodeJS配置的ip地址不是服务器地址 , 而是私有地址 .
2:关于nodeJS后台运行
使用 node server.js 启动项目 , 当我们关闭服务器窗口的时候 , 服务也就关闭了 .
解决这个问题可以使用forever.
首先 npm install forever -g 全局安装forever ,找到安装成功的地址 .
cd 进/usr/local/bin
在当前目录下使用 ln -s /usr/zhangyun/node-v6.9.5-linux-x64/bin/forever 创建软链接 . (-s后面的地址是安装成功后forever位置))
这样就能全局使用forever命令了 .
cd 到nodeJS项目文件夹 ,
使用forever start server.js 就可以后台启动nodeJS项目.
3.更多问题 , 等后续遇到了再补充
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)