当前位置:网站首页>win配置pm2开机自启node项目
win配置pm2开机自启node项目
2022-07-06 23:55:00 【苦海123】
pm2类似于nodemon,但是功能比nodemon更丰富
1.全局安装pm2,如果你的系统提前没有安装node环境,那么你可以参考博文:https://blog.csdn.net/weixin_46758988/article/details/117109297 ;如果你已经全局安装过pm2,只是没有配置开机自启,那么你也无需重复安装pm2了
npm install pm2 -g 或使用yarn安装(使用yarn前先 npm install yarn -g 全局安装yarn):yarn global add pm2
2.全局安装pm2 Win自启包:pm2-windows-startup:
npm install pm2-windows-startup -g 或 yarn global add pm2-windows-startup
3.安装配置包:pm2-startup
pm2-startup install 或 yarn add pm2-startup
4.使用pm2启动项目,这里可以直接启动你项目中的index.js或app.js,但是还是推荐使用pm2配置文件启动项目,关于pm2配置文件可以参考如下配置文件pm2.config.json(如果想要更详细配置可以查阅官方文档):
{
"apps":{
"name":"myproject-web", // 项目的别名
"script":"index.js", //需要启动程序的入口文件
"watch":"true", // 开启文件变化监听
"ignore_watch":[ // 忽略文件变化监听文件
"node_modules",
"logs"
],
"error_file":"logs/error.log", //配置错误日志输出文件地址
"out_file":"logs/consoles.log", //配置打印日志输出文件地址
"log_date_format":"YYYY-MM-DD HH:mm:ss", //配置日志日期格式
"instances":2 //配置项目所占用的核数,小于等于服务器的总核数量
}
}
5.启动项目:使用pm2启动项目,提前将命令行切换到项目根文件夹下后执行如下命令(如果不切换到项目文件下可以在启动时将项目路径加入启动:pm2 start 路径\index.js):
pm2 start pm2.config.json ,如果没有配置pm2配置文件,那么可以直接通过:pm2 index.js 或 pm2 app.js启动
6.将此项目保存起来,开机后才会自动重启,如:
pm2 save
7.重启服务器,可以正常访问应用,当然我们通常使用命令行下键入命令:pm2 list查看当前启动的项目,这里命令行路径没有要求,如:
pm2 list
提示:本文图片等素材来源于网络,若有侵权,请发邮件至邮箱:[email protected]联系笔者删除。
笔者:苦海
边栏推荐
猜你喜欢
基于 hugging face 预训练模型的实体识别智能标注方案:生成doccano要求json格式
Web Authentication API兼容版本信息
[JS component] date display.
Mysql database learning (8) -- MySQL content supplement
How digitalization affects workflow automation
MySQL数据库学习(8) -- mysql 内容补充
集群、分布式、微服务的区别和介绍
基于NCF的多模块协同实例
Leakage relay jd1-100
Record a pressure measurement experience summary
随机推荐
基于 hugging face 预训练模型的实体识别智能标注方案:生成doccano要求json格式
消息队列:重复消息如何处理?
async / await
Flinksql 读写pgsql
How can project managers counter attack with NPDP certificates? Look here
Mybaits之多表查询(联合查询、嵌套查询)
Taobao store release API interface (New), Taobao oauth2.0 store commodity API interface, Taobao commodity release API interface, Taobao commodity launch API interface, a complete set of launch store i
Jhok-zbg2 leakage relay
[binary tree] binary tree path finding
Lombok plug-in
论文阅读【MM21 Pre-training for Video Understanding Challenge:Video Captioning with Pretraining Techniqu】
AIDL 与Service
Talk about mvcc multi version concurrency controller?
English grammar_ Noun possessive
[论文阅读] Semi-supervised Left Atrium Segmentation with Mutual Consistency Training
Codeforces Round #416 (Div. 2) D. Vladik and Favorite Game
[JS component] custom select
What is dependency injection (DI)
When deleting a file, the prompt "the length of the source file name is greater than the length supported by the system" cannot be deleted. Solution
1.AVL树:左右旋-bite