{"id":234,"date":"2020-11-14T08:35:54","date_gmt":"2020-11-14T08:35:54","guid":{"rendered":"http:\/\/robinluo.top\/?p=234"},"modified":"2021-01-22T05:10:05","modified_gmt":"2021-01-22T05:10:05","slug":"pm2","status":"publish","type":"post","link":"https:\/\/robinluo.top\/?p=234","title":{"rendered":"pm2"},"content":{"rendered":"\n<p>pm2 \u4e3anodejs \u8fdb\u7a0b\u7ba1\u7406\u5668 \u4e3a\u67d0\u4e2anodejs\u8fdb\u7a0b\u63d0\u4f9b\u5b88\u62a4\u8fdb\u7a0b\u529f\u80fd<\/p>\n\n\n\n<p>npm install -g pm2 \u5168\u5c40\u5b89\u88c5<\/p>\n\n\n\n<p>pm2 start app.js \u66ff\u4ee3 node app.js \u4ee5\u5b88\u62a4\u8fdb\u7a0b\u542f\u52a8app.js  <\/p>\n\n\n\n<p>pm2 start app.js &#8211;name wb123 \u4ee5\u5b88\u62a4\u8fdb\u7a0b\u542f\u52a8app.js \u5e76\u547d\u540d\u4e3awb123<\/p>\n\n\n\n<p>pm2 start bin\/www &#8211;watch  \u4ee5\u5b88\u62a4\u8fdb\u7a0b\u542f\u52a8bin\/www \u5e76\u76d1\u63a7\u6587\u4ef6\u53d8\u5316\u81ea\u52a8\u91cd\u542f<\/p>\n\n\n\n<p>pm2 restart wb123 \u91cd\u542fwb123\u670d\u52a1<\/p>\n\n\n\n<p>pm2 stop wb123  \u505c\u6b62\u670d\u52a1  pm2 stop all \u505c\u6b62\u6240\u6709<\/p>\n\n\n\n<p>pm2 delete www  \u5220\u9664www\u670d\u52a1 pm2 delete all \u5220\u9664\u6240\u6709<\/p>\n\n\n\n<p>pm2 list  \u67e5\u770b\u6240\u6709\u8fdb\u7a0b<\/p>\n\n\n\n<p>pm2 monit \u67e5\u770b\u8fdb\u7a0b\u5185\u5b58\u7b49<\/p>\n\n\n\n<p>pm2 -h \u67e5\u770b\u547d\u4ee4\u8be6\u7ec6<\/p>\n\n\n\n<p>pm2 \u542f\u52a8\u5176\u4ed6\u8fdb\u7a0b \u5728\u5f53\u524d\u6587\u4ef6\u5199\u4e0b\u4e00\u4e2a xxx.json\u7684\u811a\u672c<\/p>\n\n\n\n<p>pm2 start xxx.json \u6267\u884c<\/p>\n\n\n\n<p>\u811a\u672c\u5185\u5bb9\u5982\u4e0b<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n  \"name\": \"\u5e94\u7528\u8fdb\u7a0b\u540d\u79f0\",\r\n  \"args\": \"\u4f20\u9012\u7ed9\u811a\u672c\u7684\u53c2\u6570\",\r\n  \"script\": \"\u542f\u52a8\u7684\u811a\u672c\u8def\u5f84\",\r\n  \"exec_interpreter\": \"\u6307\u5b9a\u7684\u811a\u672c\u89e3\u91ca\u5668\",\r\n  \"exec_mode\": \"fork\",\r\n  \"max_memory_restart\": \"100M\",\r\n  \/\/\u5176\u5b83\u53c2\u6570\r\n  \"watch\": &#91;  \/\/ \u76d1\u63a7\u53d8\u5316\u7684\u76ee\u5f55\uff0c\u4e00\u65e6\u53d8\u5316\uff0c\u81ea\u52a8\u91cd\u542f\r\n    \"bin\",\r\n    \"routers\"\r\n  ],\r\n  \"ignore_watch\" : &#91;  \/\/ \u4ece\u76d1\u63a7\u76ee\u5f55\u4e2d\u6392\u9664\r\n    \"node_modules\", \r\n    \"logs\",\r\n    \"public\"\r\n  ],\r\n  \"watch_options\": {\r\n    \"followSymlinks\": false\r\n  },\r\n  \"error_file\" : \".\/logs\/app-err.log\",  \/\/ \u9519\u8bef\u65e5\u5fd7\u8def\u5f84\r\n  \"out_file\"   : \".\/logs\/app-out.log\",  \/\/ \u666e\u901a\u65e5\u5fd7\u8def\u5f84\r\n  \"env\": {\r\n      \"NODE_ENV\": \"production\"  \/\/ \u73af\u5883\u53c2\u6570\uff0c\u5f53\u524d\u6307\u5b9a\u4e3a\u751f\u4ea7\u73af\u5883\r\n  }\r\n}<\/code><\/pre>\n\n\n\n<p>php\u811a\u672c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n  \"name\": \"php-socket\",\r\n  \"args\": \"\",\r\n  \"script\": \".\/include\/Socket.php\",\r\n  \"exec_interpreter\": \"php.exe\",\r\n  \"exec_mode\": \"fork\",\r\n  \"max_memory_restart\": \"100M\"\r\n}<\/code><\/pre>\n\n\n\n<p>java jar\u5305<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n    \"name\": \"my-server\",\r\n    \"script\": \"\/usr\/bin\/java\",\r\n    \"args\": &#91;\r\n        \"-jar\",\r\n        \"server.jar\"\r\n    ],\r\n    \"exec_interpreter\": \"\",\r\n    \"exec_mode\": \"fork\"\r\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n      \"name\": \"yhtAdmin\",\n\n\u00a0 \u00a0 \"script\": \"java\",\n\n\u00a0 \u00a0 \"args\": &#91;\n\n\u00a0 \u00a0 \u00a0 \u00a0 \"-jar\",\n\n\u00a0 \u00a0 \u00a0 \u00a0 \"background-0.0.1-SNAPSHOT.jar\"\n\n\u00a0 \u00a0 ],\n\n\u00a0 \u00a0\"error_file\":\".\/log\/err.log\",\n\n\u00a0 \u00a0\"out_file\":\".\/log\/out.log\",\n\n\u00a0 \u00a0\"exec_interpreter\": \"\",\n\n\u00a0 \u00a0\"exec_mode\": \"fork\"\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>pm2 \u4e3anodejs \u8fdb\u7a0b\u7ba1\u7406\u5668 \u4e3a\u67d0\u4e2anodejs\u8fdb\u7a0b\u63d0\u4f9b\u5b88\u62a4\u8fdb\u7a0b\u529f\u80fd npm install -g pm2 \u5168\u5c40\u5b89\u88c5 pm2 start app.js \u66ff\u4ee3 node app.js \u4ee5\u5b88\u62a4\u8fdb\u7a0b\u542f\u52a8app.js pm2 start app.js &#8211;name wb123 \u4ee5\u5b88\u62a4\u8fdb\u7a0b\u542f\u52a8app.js \u5e76\u547d\u540d\u4e3awb123 pm2 start bin\/www &#8211;watch \u4ee5\u5b88\u62a4\u8fdb\u7a0b\u542f\u52a8bin\/www \u5e76\u76d1\u63a7\u6587\u4ef6\u53d8\u5316\u81ea\u52a8\u91cd\u542f pm2 restart wb123 \u91cd\u542fwb123\u670d\u52a1 pm2 stop wb123 \u505c\u6b62\u670d\u52a1 pm2 stop all \u505c\u6b62\u6240\u6709 pm2 delete www \u5220\u9664www\u670d\u52a1 pm2 delete all \u5220\u9664\u6240\u6709 pm2 list \u67e5\u770b\u6240\u6709\u8fdb\u7a0b pm2 monit \u67e5\u770b\u8fdb\u7a0b\u5185\u5b58\u7b49 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[7],"tags":[],"_links":{"self":[{"href":"https:\/\/robinluo.top\/index.php?rest_route=\/wp\/v2\/posts\/234"}],"collection":[{"href":"https:\/\/robinluo.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/robinluo.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/robinluo.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/robinluo.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=234"}],"version-history":[{"count":6,"href":"https:\/\/robinluo.top\/index.php?rest_route=\/wp\/v2\/posts\/234\/revisions"}],"predecessor-version":[{"id":301,"href":"https:\/\/robinluo.top\/index.php?rest_route=\/wp\/v2\/posts\/234\/revisions\/301"}],"wp:attachment":[{"href":"https:\/\/robinluo.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=234"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/robinluo.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=234"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/robinluo.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=234"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}