Replicate an AWS instance [closed] - amazon-web-services

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I have one EC2 p3.large instance where I have installed several libraries, I want to make an exact replica of this instance as a backup. I need that this clone includes all the installed libraries, in that sense, something similar to a what a docker container does.
I have tried just to clone the instance as shown here:
https://docs.bitnami.com/aws/faq/administration/clone-server/
But this does not kept the installed libraries and files from the original instance to the new one.

You can make an AMI of the current instance and use it for back up anytime.
Related docs here

Related

How to change a subdomain instance? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 days ago.
Improve this question
I'm trying to change the EC2 instance of my DNS, but it doens't change.
I created a new subdomain to see if the problem was with the server, but it worked.
So, I decided to delete the subdomain and create a new one, with the same subdomain name but with the new instance, and it didn't work. The subdomain is still with the old server (it has 2 hours that I did the changes).

Setting environment variables in cloud run or just put them in container file? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
When using the Cloud Run, what is the most secure way to deploy secret such as API keys? Should I dump them in a file in my project or should I set them up as environment variables in Cloud Run?
Neither in the container nor in the environment variable. Choose Secret Manager for this.
If you don't want to change your code, I wrote a wrapper (and an article) to do this

CloudFormation is it part of the architecture of my project? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I use CDK for all infrastructure on AWS, but has many problems (problems like ROLLBACK, which a cant make deploy, need destroy all stacks related and then make deploy again) with CloudFormation and people on work saying that should't not consider on part of my architecture and not should discuss about that. When say architecture i referer on all technologies i used to build my projects.
May I consider that I should discuss CloudFormation in my architecture and know and is it part?
It absolutely does make sense discussing CF/IaaC in the frame of your architecture.
It is defilitely "part".
I'd discuss this in Deployment view.

What's the most effective way to update my remote repository after changing it locally? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
So I've pushed my Django project to Bitbucket. However after I make changes to it offline, I want to update the remote repo. How would I go about this?
As it seems git push will do the job, if you have commited your changes.
But I am pretty sure you want to read up on git before you touch a remote repo.
git cheat sheet
Official git reference
Pro Git, the one and only book, pdf

ADD a existing API without server downtime [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Can you ADD an existing API without server downtime on wso2 ESB?we want to deploy it onto server without interfering with coming live request?
Yes, it is possible. You can replace the existing API configuration in the deployment folder or the CAPP (If you used capps to deploy the api) and you do not need a server restart to apply changes.