当前位置: 首页 > 工具软件 > pm2-webshell > 使用案例 >

pm2管理nodejs服务

梁马鲁
2023-12-01

安装

npm install -g pm2

基本用法

启动进程

pm2 start app.js --name my_service      

或者,不同版本也可以这样启动

pm2 start bin/www --name my_service

–name参数指定启动后的进程名。

查看所有进程

pm2 list

查看日志

pm2 logs

查看指定进程的日志

pm2 logs my_service     //通过进程名称指定

pm2 logs 6              //通过id指定

重启服务

pm2 restart <name or id>

停止服务

pm2 stop <name or id>

删除服务

pm2 delete <name or id>

高级用法

参数传递

例如下面的一个启动命令

node --expose-gc bin/www arg1 arg2 arg3

改成pm2启动后为

pm2 start bin/www --node-args="--expose-gc" -- arg1 arg2 arg3

所有v8引擎的参数均应放到–node-args中,所有启动脚本的参数应该放到–之后。

重设id

如果想重新设置服务的id和顺序,可以通过pm2 kill命令来重启pm2。注意,重启pm2后需要检查所有服务是否都启动了,重启机器后同理。

参考

How to pass node v8 args and script args to pm2?

How to reset the id of pm2?

 类似资料: