Deploy multiple applications to a single EC2 instance using AWS Elastic Beanstalk

前端 未结 5 406
渐次进展
渐次进展 2021-01-02 07:20

I am have deployed a .Net website to AWS Elastic Beanstalk. I want to now deploy another .Net web project (a web service) to the same EC2 instance that was created by AWS E

相关标签:
5条回答
  • 2021-01-02 07:27

    You can also do a multiple-app deployment using the Visual Studio AWS Toolkit:

    docs.aws.com/toolkit-for-visual-studio

    0 讨论(0)
  • 2021-01-02 07:32

    Update: This is now possible https://aws.amazon.com/about-aws/whats-new/2016/08/aws-elastic-beanstalk-supports-asp-net-core-and-multi-app-net-support/

    No. .Net deployment has some limitations on EB compared to the other frameworks. You cannot deploy multiple applications on the same instance.

    0 讨论(0)
  • 2021-01-02 07:40

    Maybe this package can help you running multiple apps/websites on a single Elastic Beanstalk instance (Apache): https://github.com/tscheiki/ElasticDeploy

    0 讨论(0)
  • 2021-01-02 07:43

    You cannot deploy a "Web Site" and a "Web Application" on the same instance (or set of instances, such as that formed by ElasticBeastalk) because they run different resources and policies. This is accordingly to the tutorial i came across on their site.

    0 讨论(0)
  • 2021-01-02 07:47

    You can use Multicontainer docker environment to deploy multiple applications http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker_ecs.html

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