Elastic Beanstalk connect to RDS from shell SSH

后端 未结 3 821
走了就别回头了
走了就别回头了 2021-02-02 17:16

I have a python application on an Elastic Beanstalk EC2 instance which is connected to an PostgreSQL RDS.

My application works fine and uses the environment variables th

相关标签:
3条回答
  • 2021-02-02 17:56

    I figured it out this morgning:

    The environment variables are not set within the virtualenv, but by another script. First you have to activate the virualenv, then you need to load the variables by activating the env script in the 'current' directory. Like this:

    source /opt/python/run/venv/bin/activate
    source /opt/python/current/env
    

    The Beanstalk RDS variables are now set and ready to use by any script you execute in SSH.

    0 讨论(0)
  • 2021-02-02 18:15

    Unfortunately, environment variables are not available outside of Elastic Beanstalk container.

    As an alternative you can add .profile file to ec2-user home and set those environment variables there, for SSH sessions. Remember, that the file will be gone on rebuild. To make it permanent, add the profile file to your project and copy to ec2-user home with container command.

    0 讨论(0)
  • 2021-02-02 18:18

    I did not find the scripts you have mentionned but find another way to reach the same information.

    cd /opt/elasticbeanstalk/bin
    sudo ./get-config environment
    

    Get config script allow you to get access to a lot of indormaftion on this categories :

    optionsettings                   environment option settings that affect instance
    container                        container specific configurations
    addons                           addon configurations
    environment                      environment variables
    meta                             EB environment meta-data
    

    Hope it helps.

    0 讨论(0)
提交回复
热议问题