Skip to content

How to connect to EC Instance without SSH on AWS

Use EC2 instance connect through AWS

  • Enter venv with:

    source /var/app/venv/staging-LQM1lest/bin/activate
    

  • Access project with:

    cd /var/app/current
    

  • You can load the environment variables required by running the following commands

    sudo yum install -y jq
    
    /opt/elasticbeanstalk/bin/get-config environment | jq -r 'to_entries|map("export \(.key)=\(.value|tostring)")|.[]' > ~/env_vars.sh
    
    # Using the text editor nano ensure the SECRET_KEY value is between single quotes ('')
    # After editing the line should look something like this:
    # export SECRET_KEY='&*$HBfiquq0!rk7?36^dhF"mXYK&d'
    # save the file with CTRL + O and enter
    # and then you can close nano with CTRL + X
    
    nano ~/env_vars.sh
    
    source ~/env_vars.sh
    

  • To install postgres, run:

    sudo dnf install postgresql15
    

You can obtain the username and password of a database with the following command:

/opt/elasticbeanstalk/bin/get-config environment