Most answered questions in Cloud Computing

0 votes
2 answers

CreateBucket operation: InvalidBucketName

Your bucket name cannot contain capital letters. ...READ MORE

Jan 27, 2019 in AWS by therealrodk
12,600 views
+1 vote
2 answers

CreateBucket operation: Access Denied

Make sure to add S3 Full access ...READ MORE

Apr 21, 2019 in AWS by Kesavan
• 460 points
10,041 views
+1 vote
2 answers

How to launch and access an instance using AWS-CLI?

aws ec2 run-instances --image-id ami-id --key-name yourkeyname ...READ MORE

Feb 23, 2019 in AWS by Shashank
• 1,370 points
1,603 views
+4 votes
2 answers

Access EC2 instance using Putty

I will tell you a descriptive way ...READ MORE

Nov 20, 2018 in AWS by Priyaj
• 58,090 points
34,288 views
+1 vote
2 answers

Can there be communication between VPC in two different regions?

Hello,  VPC peering supports between different regions. If ...READ MORE

Nov 20, 2018 in AWS by Sankar
5,811 views
0 votes
2 answers

Cloud Custodian Policies not working for EC2 and S3

There are no straight up examples. Best ...READ MORE

Mar 1, 2019 in AWS by anonymous
1,288 views
+1 vote
2 answers

Use AWS CloudWatch to start/stop EC2 instances. How to implement it?

What you can do is set a ...READ MORE

Oct 26, 2018 in AWS by Priyaj
• 58,090 points
3,849 views
+1 vote
2 answers

On decrypting file using KMS key in Amazon S3 i get an error

Try figuring out your error with the ...READ MORE

Oct 26, 2018 in AWS by Priyaj
• 58,090 points
4,936 views
+1 vote
2 answers

How to read a csv file stored in Amazon S3 using csv.DictReader

The code would be something like this: import ...READ MORE

Oct 25, 2018 in AWS by Archana
• 5,640 points
53,658 views
+1 vote
2 answers

Read file content from S3 bucket with boto3

s3_client=boto3.resource('s3') bucket = s3_client.Bucket('test') for obj in bucket.objects.all(): contents=obj.get()['Body'].read().decode(encoding="utf-8",errors="ignore") for line ...READ MORE

Jul 4, 2019 in AWS by reddy

edited Jul 4, 2019 by Kalgi 43,390 views
0 votes
2 answers

How do I add python libraries to an AWS lambda function for Alexa?

If you get lucky (it depends what ...READ MORE

Nov 3, 2020 in AWS by anonymous
15,152 views
+2 votes
2 answers

Hi, can someone help me in my research. I need a research topic for Visualization in Cloud Computing.

Find the different projects for your research ...READ MORE

Oct 17, 2018 in Cloud Computing by Nabarupa

edited Aug 8, 2023 by Khan Sarfaraz 1,582 views
+5 votes
2 answers

AWS EC2 Instances are not getting to internet access

Check your VPC settings, whether you are ...READ MORE

Oct 16, 2018 in AWS by Omkar
• 69,210 points
12,430 views
+13 votes
2 answers

Using Python how can i access AWS?

You can begin using Boto 3. Boto is ...READ MORE

Oct 15, 2018 in AWS by Priyaj
• 58,090 points
2,932 views
0 votes
2 answers

Text console for development in JAWS?

Hey @eatcodesleeprepeat, you could use Jaws Braille viewer ...READ MORE

Apr 3, 2019 in AWS by Kalgi
• 52,360 points
1,206 views
0 votes
2 answers

How do i set development and staging with Amazon Redshift

As Redshift is a fork of postgres ...READ MORE

Oct 12, 2018 in AWS by findingbugs
• 4,780 points
2,619 views
0 votes
2 answers

Error on CompareFacesRequest as part of AWS's Rekognize on Android

do you get ans????? READ MORE

May 8, 2019 in AWS by Gajendra
2,292 views
+2 votes
2 answers

Access denied: Root login Ubuntu VM on Azure

I have the same issue. Any help? READ MORE

Sep 27, 2018 in Azure by anonymous
3,356 views
0 votes
2 answers

Error : No supported authentication methods available on AWS

Diff from other answers above: I received this ...READ MORE

Mar 25, 2019 in AWS by Bathinda
• 140 points
31,535 views
0 votes
2 answers

How to recover lost private key of an EC2 instance?

I'm afraid it's not possible When you launch ...READ MORE

Sep 25, 2018 in AWS by Archana
• 4,170 points
21,470 views
+7 votes
2 answers

Why S3 is called a Object storage?

Amazon S3 stores data as objects within resources called "buckets".  Object storage, also ...READ MORE

Sep 24, 2018 in AWS by Priyaj
• 58,090 points
11,771 views
+5 votes
2 answers

What are the different job roles that one can get for AWS

If you have the AWS certification for ...READ MORE

Sep 21, 2018 in AWS by Priyaj
• 58,090 points
677 views
0 votes
2 answers

how to import numpy and pandas inside aws lambda function?

I had good luck using pre-made pandas ...READ MORE

Nov 3, 2020 in AWS by anonymous

reshown Nov 3, 2020 by Sirajul 9,039 views
0 votes
2 answers

how to import numpy and pandas inside aws lambda function?

this approach worked for me: https://medium.com/@melissa_89553/how-to- ...READ MORE

Oct 10, 2020 in AWS by anonymous
11,019 views
+1 vote
2 answers

AWS Lambda Function Issues

If you have created AWS Lambda Deployment JAR ...READ MORE

Sep 14, 2018 in AWS by datageek
• 2,530 points
495 views
+1 vote
2 answers

AWS Cloudformation nested Functions (Split, Select, Join, Ref)

"Join" is not a function. "Fn::Join" is. READ MORE

May 16, 2019 in AWS by Nalin Kant Gupta
4,238 views
0 votes
2 answers

How can I find out the instance id of an ec2 instance from within the ec2 instance?

A curl or wget to http://169.254.169.254/latest/meta-data/instance-id will ...READ MORE

Mar 9, 2020 in AWS by anonymous
6,404 views
0 votes
2 answers

How to display just the name of files using aws s3 ls command?

aws s3 ls s3://<your_bucket_name>/ | awk '{print ...READ MORE

Mar 17, 2019 in AWS by anonymous
20,916 views
0 votes
2 answers

How to skip headers when reading a CSV file in S3 and creating a table in AWS Athena?

Thanks for the answer. This should be clear ...READ MORE

Aug 14, 2019 in AWS by athenauserz
11,251 views
0 votes
2 answers

How to deploy a simple static micro site on Microsoft Azure?

Create an Azure Storage account ("hot file" ...READ MORE

Jun 4, 2020 in Azure by René
1,148 views
0 votes
2 answers

aws keep returning 502 bad gateway error using python flask

The 502 Bad Gateway Error is an ...READ MORE

Jan 3, 2019 in AWS by iangregor
• 300 points
11,769 views
0 votes
2 answers

What is AWS Code star?

AWS CodeStar is a service which bring ...READ MORE

Aug 5, 2020 in Cloud Computing by Preeti
777 views
0 votes
2 answers

What Is AWS Machine learning?

Amazon machine learning is a web service ...READ MORE

Apr 16, 2019 in Cloud Computing by SA
• 1,090 points

reshown Dec 13, 2023 by Neelam 910 views
0 votes
2 answers

Do AWS support SES in CloudFormation?

There is no straightforward approach to create ...READ MORE

Aug 15, 2019 in AWS by sri
1,880 views
0 votes
2 answers

User Data script to call aws cli

I'm assuming you are already using an ...READ MORE

Mar 28, 2019 in AWS by anonymous
2,815 views
0 votes
2 answers

How to access files in S3 bucket from R?

You can take a look at the ...READ MORE

Aug 10, 2018 in AWS by Deepthi
• 300 points
6,379 views
0 votes
2 answers

Adding Cache-Control and Expires headers to Azure Storage Blobs

Here's an updated version of the previous ...READ MORE

Aug 7, 2018 in Azure by null_void
• 3,220 points
3,693 views
0 votes
2 answers

How to test credentials for AWS Command Line Tools

This command always works regardless of the ...READ MORE

Aug 8, 2018 in AWS by anonymous
5,673 views
+1 vote
2 answers

Using reserved instances in an Elastic Beanstalk Load Balancer

A Reserved Instance a method of pre-paying ...READ MORE

Aug 1, 2018 in AWS by Priyaj
• 58,090 points
584 views
+1 vote
2 answers

How to install Python MySQLdb module using pip?

It's easy to do, but hard to ...READ MORE

Aug 1, 2018 in AWS by Priyaj
• 58,090 points
5,473 views
+1 vote
2 answers

Is there a API to get AWS Marketplace Products

AWS Marketplace Entitlement Service API Reference The AWS ...READ MORE

Aug 1, 2018 in AWS by findingbugs
• 4,780 points
890 views
+1 vote
2 answers

Spring data with AWS ElastiCache

AWS ElastiCache APIs don't expose any abstraction ...READ MORE

Jul 27, 2018 in AWS by Priyaj
• 58,090 points
3,444 views
0 votes
2 answers

What is the difference between Amazon SNS and Amazon SQS?

Amazon SQS and SNS are the two ...READ MORE

Sep 9, 2020 in AWS by Michael
• 140 points
3,030 views
0 votes
2 answers

AWS Certificate Manager - How to download public key?

you can not download SSL Certificate from ...READ MORE

Jun 28, 2019 in AWS by salman
6,690 views
+1 vote
2 answers

How does Elastic Beanstalk and EC2 contribute to automation in AWS?

I hope this helps AWS Elastic Beanstalk is the ...READ MORE

Jul 26, 2018 in Cloud Computing by code_ninja
• 6,290 points
687 views
+12 votes
2 answers

What are stateless servers?

State is what networking people call memory. One ...READ MORE

Jul 27, 2018 in Cloud Computing by Priyaj
• 58,090 points
6,018 views
+13 votes
2 answers

AWS Migration: Lift and Shift

This term is related to data migration ...READ MORE

Jul 27, 2018 in Cloud Computing by Priyaj
• 58,090 points
554 views
+1 vote
2 answers

How to use jenkinsfile to get content from AWS SQS?

You can import standard AWS SDK to ...READ MORE

Jul 20, 2018 in AWS by Flying geek
• 3,280 points
2,115 views
0 votes
2 answers

How and Why AWS bill comes after i suspended the account

While your account is suspended, you will ...READ MORE

Oct 18, 2020 in AWS by anonymous
5,145 views
0 votes
2 answers

How to configure Amazon EC2 command line interface?

You can use this command to create ...READ MORE

Feb 23, 2019 in AWS by Shashank
• 1,370 points
869 views