Reputation: 540
I have deployed node.js code on aws elasticbeanstalk creating a new environment. The app is successfully deployed. I want to access the files. I used ssh to the remote machine but the I can't find the code
Upvotes: 5
Views: 3670
Reputation: 5079
If you found this question but you're not using ssh, you could download the zip after clicking on a version in the console.
Upvotes: 0
Reputation: 671
Adding to the last answer, remember that you need to select enable SSH to your instances when launching application. Else, you won't be able to SSH into any AWS Elastic Beanstalk instance.
Upvotes: 2
Reputation: 200672
Elastic Beanstalk places the deployed code in /var/app/current
Note that you shouldn't be making changes on the Elastic Beanstalk server directly.
Upvotes: 9