繁体   English   中英

使用 pm2 无法访问 ElasticBeanstalk 环境变量

[英]ElasticBeanstalk Environment Variables not accessible using pm2

我已经能够使用如下所示的基本 npm 启动脚本在 ElasticBeanstalk 上成功运行我的应用程序。

"scripts": {
    "start": "NODE_ENV=production node ./bin/www"
}

在我的服务器上,我现在已经全局安装了 pm2 并更新了我的package.json中的start脚本以使用 pm2。

"scripts": {
    "start": "pm2 start ./bin/www"
}

pm2 启动该过程,我可以通过查看我的日志看到这一点,但它似乎无法访问我为 ElasticBeanstalk 设置的环境变量。 我在文件.ebextensions/options.config中使用aws:elasticbeanstalk:application:environment选项设置环境变量,如下所示。

option_settings:
  aws:elasticbeanstalk:application:environment:
    keyOne: foo
    keyTwo: bar
    keyThree: foo

pm2 抱怨无法读取环境变量的未定义属性。

0|www    | TypeError: Cannot read property 'keyOne' of undefined
0|www    |     at Object.<anonymous> (/var/app/current/app.js:26:38)
0|www    |     at Module._compile (internal/modules/cjs/loader.js:999:30)
0|www    |     at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)
0|www    |     at Module.load (internal/modules/cjs/loader.js:863:32)
0|www    |     at Function.Module._load (internal/modules/cjs/loader.js:708:14)
0|www    |     at Module.require (internal/modules/cjs/loader.js:887:19)
0|www    |     at Module.Hook._require.Module.require (/var/app/current/node_modules/require-in-the-middle/index.js:80:39)
0|www    |     at require (internal/modules/cjs/helpers.js:74:18)
0|www    |     at Object.<anonymous> (/var/app/current/bin/www:7:11)
0|www    |     at Module._compile (internal/modules/cjs/loader.js:999:30)

我需要先获取文件吗? 我想避免在 pm2 的生态系统.config.js 文件中设置环境变量,因为我现在还可以使用当前实施的方法从 AWS 控制台以可视方式管理环境变量。

如果您已经创建了 PM2 流程,然后更新了环境变量,您应该删除 PM2 流程并使用生态系统文件重新创建它。

删除和创建操作考虑新创建的环境变量,但不考虑重新启动。 我不知道为什么。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM