简体   繁体   English

在 AWS 上部署 Multiservices Spring/Python 项目的最简单方法是什么?

[英]What's the easiest way to deploy a a Multiservices Spring/Python project on the AWS?

I have created a Multiservices Spring/Python project.我创建了一个 Multiservices Spring/Python 项目。 What's the easiest way to deploy it on the AWS cloud with 4 machines?使用 4 台机器将其部署在 AWS 云上的最简单方法是什么?

You can use multiple Services to achieve the same :您可以使用多个服务来实现相同的:

  1. ElasticBeanstalk: If you have you code then you upload it on ElasticBeanstalk and any newer version just upload it on the Beanstalk and choose the deployment method it will automatically be deployed on the machine. ElasticBeanstalk:如果您有代码,则将其上传到 ElasticBeanstalk,任何更新的版本只需将其上传到 Beanstalk 并选择将自动部署在机器上的部署方法。 You can choose the whatever number of instances you want to spin along with LoadBalancer and more.您可以选择要随 LoadBalancer 等一起旋转的任意数量的实例。

Documentation here文档在这里

  1. CodePipeline: Have your code pushed into CodeCommit or Github or S3 and let it use CodeCommit, CodeBuild and CodeDeploy to deploy it on your EC2 server. CodePipeline:将您的代码推送到 CodeCommit、Github 或 S3,并让它使用 CodeCommit、CodeBuild 和 CodeDeploy 将其部署到您的 EC2 服务器上。

Documentation here文档在这里

  1. CloudFormation: This service you can use to spin up your services just through code. CloudFormation:您可以使用此服务通过代码启动您的服务。 It is called Infrastructure as Code.它被称为基础设施即代码。 Write code and spin up the instances.编写代码并启动实例。

Documentation here文档在这里

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在 AWS 上启动并行作业的最简单方法是什么? - What is the easiest way to launch parallel jobs on AWS? 在AWS的同一区域中更改S3存储桶区域的最简单,最快的方法是什么? - What is the easiest and fastest way to change S3 bucket zone in the same region in AWS? 将 HTTPS 添加到 AWS EC2 实例的最简单、最快捷的方法是什么? - What is the easiest and fastest way to add HTTPS to an AWS EC2 instance? 在使用 Java 的 Android 项目中获取 AWS 凭证的最简单方法? - Easiest way to get AWS Credential in an Android project using Java? 如何将React项目部署到AWS s3 - How to deploy react project to AWS s3 在AWS服务器和自定义域之间进行配置的最简单方法是什么 - What is the most easiest way to configure between AWS server and custom domain 在python中从AWS检索快照时间戳和ID的最简单方法? - Easiest way to retrieve snapshot time stamp and ID from AWS in python? 如何在本地部署AWS python Lambda项目? - How to deploy AWS python Lambda project locally? 在 EC2 服务器中远程执行 python 脚本的最简单方法是什么? - What is the easiest way to execute python script in EC2 server remotely? 如何将Spring Boot Rest项目部署到私有AWS API GATEWAY? - How to deploy spring boot rest project to private AWS API GATEWAY?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM