ecosystem.config.js
module.exports = {
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps : [
// First application
{
name : 'cms_stage',
script : 'www',
env: {
COMMON_VARIABLE: 'true',
PORT: 3001,
NODE_ENV: 'staging'
}
}
]
}
当我从PORT=3001 node www
开始时,我有一个快速应用程序,它有效。但是在pm2以上配置它没有。 pm2 show开始但是没有收听3001
我尝试了PORT=3001 pm2 start cms_stage
,pm2 start cms_stage
和pm2 start ecosystem.config.js
。
在app.js
中读取此app.set('port', process.env.PORT || 3000)
的端口号
答案 0 :(得分:1)
使用pm2 kill