ASP.NET Host Application in Amazon Web Service

I have an ASP.NET C # application and I want to host it in the cloud using Amazon Web Service and MS SQL 2008 for Database. What should I do to host my application in the cloud? Any suggestion is appreciated. Thanks guys...

+3


source to share


1 answer


I highly recommend Elastic Beanstalk for anyone new to AWS. It's easy to get started with and gives you a lot of managed services.

In your case:

  • Beanstalk supports the latest IIS / C # /. NET framework . See Also: Supported .NET Platforms
  • For AWS, there is a Visual Studio plugin that has the ability to deploy Beanstalk with one click.
  • Beanstalk maintains an RDS (AWS Managed) database. RDS supports MS-SQL, MySQL, Oracle.


Here to get started: Build and Deploy Elastic Beanstalk Applications in .NET Using the AWS Toolkit for Visual Studio

What you don't see: You will receive a complete solution. You can choose one instance and install HA. You can easily have multiple (dev, Test, Prod) systems. It will be easy to manage. By default, most AWS architectures are best used for security.

Personal Note: I am using Visual Studio + AWS Plugin + Visual Studio Online + Elastic Beanstalk for my current project. Works well together!

+3


source







All Articles