我正在尝试使用 pm2 进程管理器在生产 EC2 服务器上启动 node.js 应用程序。
当我通过 ssh 进入实例并运行 pm2 start app.js
时,PM2 启动得很好并且可以访问所有环境变量。一切安好。
但是,我想从名为 pm2 start app.js
的 Codedeploy Hook 脚本运行 applicationstart.sh
,该应用程序失败并显示 errored
状态,因为它缺少所有环境变量。
这是添加脚本的位置,因此它会在每次部署时启动并调用 pm2 start:appspec.yml
version: 0.0
os: linux
files:
- source: /
destination: /home/ubuntu/teller-install
hooks:
AfterInstall:
- location: scripts/afterinstall.sh
timeout: 1000
runas: root
ApplicationStart:
- location: scripts/applicationstart.sh
timeout: 300
runas: ubuntu
这是应用程序启动脚本:
#!/bin/bash
echo "Running Hook: applicationstart.sh"
cd /home/ubuntu/teller-install/Server/
pm2 start app.js
exit 0
当我从 ssh 运行脚本时,我以 ubuntu 身份登录,并且我将 appconfig.yml 中的脚本设置为也以 ubuntu 身份运行。
为什么从终端启动 pm2 和从启动钩子(Hook)脚本启动它有什么区别?
这里直接从 ssh 运行:
我可以提供迫切需要解决方案的任何必要信息。谢谢!
最佳答案
在调用 pm2 start app.js 加载环境变量之前,我必须添加 source /etc/profile
。
脚本现在看起来像
#!/bin/bash
echo "Running Hook: applicationstart.sh"
cd /home/ubuntu/teller-install/Server/
source /etc/profile
pm2 start app.js
exit 0
关于当 pm2 从脚本启动时,Node.js 应用程序无法访问任何环境变量,但从 ssh 启动时可以,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44360549/