Questions tagged with Compute
Content language: English
Sort by most recent
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?
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
*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)

but nothing works...
Need a solution to resolve the error...
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
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.
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.
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.
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!
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?
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?
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!
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.