PM2 - Home:监控和诊断Web界面 群集模式 生态系统文件 安装程序启动脚本 文件更改后重新启动应用程序 在pm2中启动 package.json 脚本 命令汇总 启动 查看信息 停止 重启 删除应用 重置重启次数 其他 PM2是一个守护进程管理器,它将帮助您管理和保持应用程序联机。PM2入门很简单,它是一个简单直观的CLI,可通过NPM安装...
功能丰富:支持进程监控、负载均衡、日志管理、自动重启等功能。还提供了Web界面(pm2-gui)用于可视化管理。 集成容易:对于同时管理 Node.js 和 Python 程序的环境,PM2提供了一个一致的管理界面。 集成日志管理:内置日志管理功能,可以方便地查看和管理应用日志。 缺点: 主要设计为 Node.js:虽然支持 Python,但它的许多...
pm2-web 是一款 pm2 服务状态监控程序,基于 web 。 安装 npm install -g pm2-web 运行(默认占用8080端口) pm2-web 自定义配置文件 通过--config yourFile指定加载的配置文件 新建pm2-web-config.json文件: {"www":{"host": "localhost", "address": "0.0.0.0", "port": 10016} } 运行 运行pm2-web:...
pm2-web can start a https server if so desired. To do so, setwww:ssl:enabledto true in your configuration file and supply your certificate details. If you do not have a SSL certificate, thegenerate_certificate.shscript in the/certsdirectory will create a self-signed certificate for you. D...
$ npm install -g pm2-web Then run: $ pm2-web Configuration All configuration options are documented in thedefault configuration file. pm2-web will load one of the following files if they exist (in order of preference) A file specified by the--config /path/to/config.jsonargument ...
本文介绍 PM2 在Docker上部署 Node.js Web 应用。 PM2 是守护进程管理器,它将帮助您管理和保持 Nodejs 应用程序 24/7 在线。 Docker 是一个开放源代码软件,是一个开放平台,用于开发应用、交付(shipping)应用、运行应用。 Docker 允许用户将基础设施(Infrastructure)中的应用单独分割出来,形成更小的颗粒(容器),从...
Since it's no longer possible to monitor pm2 running on multiple machines I'm not really working on pm2-web any more. For an alternative, check out Guvnor - a process manager with support for multiple hosts, unix based permissions, a far more capable web interface and more. pm2-web A ...
For debugging to work,node-inspectormust be installed and running on the same machine as pm2 (not necessarily the same as pm2-web). To run Install pm2-web: $ npm install -g pm2-web Then run: $ pm2-web Configuration All configuration options are documented in thedefault configuration file....
pm2.io:监控和诊断Web界面 基于Web 的仪表板,带有诊断系统的跨服务器: 代码语言:txt 复制 pm2 plus 集群模式 对于Node.js 应用程序,PM2 包含一个自动负载均衡器,它将在每个生成的进程之间共享所有 HTTP[s]/Websocket/TCP/UDP连接。 要在群集模式下启动应用程序: ...
文章被收录于专栏:IMWeb前端团队 关联问题 换一批 PM2是什么? PM2的主要功能有哪些? 如何安装PM2? 简介 PM2是node进程管理工具,可以利用它来简化很多node应用管理的繁琐任务,如性能监控、自动重启、负载均衡等,而且使用非常简单。 下面就对PM2进行入门性的介绍,基本涵盖了PM2的常用的功能和配置。 安装 全局安装,简...