标签:reload 常见问题 pre 通过 file load test 程序 cluster
一、日志
1、pm2 的log怎么查看?(安装pm2后默认日志的路径为~/.pm2/),可以通过pm2 show (name)来查看某个进程下的日志地址
2、修改日志的输出路径,通过写一个程序启动的配置文件apps.yml,在里面可以设置日志的输出地址,输出文件,已经输出的格式。例如:
apps: - script : bin/hello.js name : ‘hello‘ instances: 2 exec_mode: cluster cwd: /root/nodeTest log_date_format: "YYYY-MM-DD HH:mm Z" // 配置日志的输出格式 out_file: /root/nodeTest/testOut.log // 配置out日志的输出文件名
3、清楚(pm2 flush)与重载日志(pm2 reloadLogs
)
标签:reload 常见问题 pre 通过 file load test 程序 cluster
原文地址:http://www.cnblogs.com/duhuo/p/6165706.html