Questions tagged with Compute

Content language: English

Sort by most recent

Browse through the questions and answers listed below or filter and sort to narrow down your results.

We have a handful of apps for users to consume in AppStream 2 that are running on Amazon Linux 2. I'd love to be able to offer users a persistent home folder similar to our Windows applications. Is this possible?
1
answers
0
votes
30
views
asked 22 days ago
Hi Team, One of my ec2 machine is memory under provisioned. Just wanted to know that what is the threshold value by default where instance say under provision or over provision. How much memory should be free for instance to run normally. Suggest any references to understand the limits where this under/over provisions trigger for instances
1
answers
0
votes
24
views
asked 22 days ago
*Need to replicate Windows server 2012 to Aws *Downloaded Aws Replication installer .exe file from the following link: https://aws-elastic-disaster-recovery-ap-south-1.s3.ap-south-1.amazonaws.com/latest/windows/AwsReplicationWindowsInstaller.exe *Setup has been downloaded but not able to install athe application. *While opening .exe file cmd window just opens and automatically closes itself. As a troubleshooting method, tried below steps: *Turned off windows firewall, Turned off Microsoft security essentials. * Tried the methods which mentioned in the link: https://docs.aws.amazon.com/mgn/latest/ug/Troubleshooting-Agent-Issues.html * Also executes the command in powershell and command prompt(Administrator) ![error](/media/postImages/original/IMBZkZPecAQ_KjIvosXHwdgg) but nothing works... Need a solution to resolve the error...
0
answers
0
votes
11
views
asked 22 days ago
Hello, do you have any Information on when AWS Elastic Disaster Recovery will support Ubuntu 22.04 LTS in the near Future? We got Production Critical On-Premise Linux Machines that need 2b replicated with AWS for Failovers. A lot of the Servers are Ubuntu 20.04 LTS that work like a charm wit h the Service, but the Main Servers won't. Would appreciate some update on this. Thanks in advance
2
answers
0
votes
23
views
asked 24 days ago
Subject says it all: What are my options on getting headless Chromium installed onto Amazon Linux 2 aarch64? If you can point me to directions, that'd be awesome.
1
answers
0
votes
13
views
asked 25 days ago
I purchased a convertible RI r6a.32xlarge. What do I need to purchase or do to upgrade it to r6a.48xlarge? According to the documentation, I need to pay a normalization factor of 128 to equal the NF for the r6a.48xlarge (384). Do I just purchase the r6a.48xlarge instance and upgrade like that? Or r6a.16xlarge and then merge it with my instance? Documentation is uclear.
1
answers
1
votes
27
views
profile picture
asked 25 days ago
Hello Team, I am trying to launch recovery Instance in AWS DRS after updating the EC2 Launch Settings and updated Default Launch Settings then after. However the launched Recovery Instance is not exhibiting the changes made in the launch settings such as Not Encrypted EBS Volume and Public IP etc. Please tell me which step am I missing here? Thanks.
0
answers
0
votes
11
views
asked 25 days ago
Hi, We're trying to launch a Collibra DQ instance via the following link: https://aws.amazon.com/marketplace/pp/prodview-ejyn7foj6lsnu#pdp-support Now I was wondering something. Is it possible that after launching, we can pause the server when it is not being used. So that we can limit the costs of launching such an instance? Because the way I see it, you'll pay for the idle hours just as much as the running hours. Thanks in advance!
Accepted AnswerAmazon EC2Compute
1
answers
0
votes
23
views
asked 25 days ago
I‘m in beijing china,i just have launched an ec2 instance today in singapore, but connection to the ecs was failed, any suggestions for the problem? do i need a vpn to go through or there are any other reasons?
1
answers
0
votes
24
views
asked 25 days ago
Hello I'm inquiring about NAT. Currently, I want to set it as IGW through NAT and communicate with ec2 on the Internet, what should I do?
1
answers
0
votes
21
views
asked a month ago
Our web servers (three separate websites) keep crashing and our web developer thinks this is some kind of issue with the main control panel on Amazon, however, there are no issues with our account health. Any insight into what the issue could be would be greatly appreciated!
2
answers
0
votes
26
views
asked a month ago
Hello, I have the following function retrieving the price for an 'on-demand' instance: ``` def get_price(self, region, instance, os): FLT = '[{{"Field": "operatingSystem", "Value": "{o}", "Type": "TERM_MATCH"}},' \ '{{"Field": "instanceType", "Value": "{t}", "Type": "TERM_MATCH"}}]' f = FLT.format(r=region, t=instance, o=os) rrr = boto3.client('pricing') data = rrr.get_products(ServiceCode='AmazonEC2', Filters=json.loads(f)) od = json.loads(data['PriceList'][0])['terms']['OnDemand'] id1 = list(od)[0] id2 = list(od[id1]['priceDimensions'])[0] return od[id1]['priceDimensions'][id2]['pricePerUnit']['USD'] ``` However, and when I change ['OnDemand'] to ['spot'] (or ['Spot']) the code tells me that Spot is not a keyword. Is there any way to modify the function to gather the spot price? Thanks.
Accepted AnswerComputeDevOps
2
answers
0
votes
26
views
asked a month ago