How can I download a application from Elastic Beanstalk? I uploaded the application via the web interface, and made some changes live (It's a wordpress site), and now I want to download the whole site.
Asked
Active
Viewed 1.3k times
20

starball
- 20,030
- 7
- 43
- 238

Marcus Sabino
- 340
- 1
- 2
- 9
-
Since it is a wordpress site does that mean you have a database configured too? Do you just want to download the source code or the configuration changes as well? – Rohit Banga Feb 01 '15 at 20:44
3 Answers
25
You can download the site from within Application Versions Table (Source Column) in AWS Console.
- Log into AWS Console
- Navigate to Services-> Beanstalk -> Application Versions
Alternatively you can also scp the file from the EC2 instance tied to your beanstalk application.

Dhananjay
- 642
- 6
- 15
19
Using the CLI EB client you can run from your application's local directory:
eb labs download
It will download the application's last version code archive into ./.elasticbeanstalk/downloads/<some name with numbers>.zip

myselfhimself
- 559
- 5
- 12
0
- Log into the aws console.
- Search for "Elastic Beanstalk".
- Select the Environment.
- Choose Application Versions on the left side bar.
- Select the Application version that you want to download by clicking on the link in the source column.
- Wait for download to complete.

Pranu Pranav
- 353
- 3
- 8