Most viewed questions in Cloud Computing

+5 votes
14 answers

Python AWS Boto3: How do i read files from S3 Bucket?

You can use the following code, import boto3 s3 ...READ MORE

Dec 7, 2018 in AWS by Nitesh
313,271 views
+7 votes
3 answers

How to download folder from AWS S3?

To Download using AWS S3 CLI : aws ...READ MORE

Sep 7, 2018 in Cloud Computing by eatcodesleeprepeat
• 4,710 points
271,887 views
+1 vote
2 answers

Download file from s3 - aws cli

You can use cp to copy the ...READ MORE

Aug 23, 2019 in AWS by Faiza
224,321 views
+7 votes
12 answers

How do I delete my Google Cloud Platform Account?

How do I delete me cloud and ...READ MORE

Jan 18, 2019 in GCP by dodge123@yahoo.com
161,008 views
+9 votes
17 answers

AWS VPC - What is the difference between Internet Gateway & NAT

Internet Gateway An Internet Gateway is a logical connection ...READ MORE

Apr 24, 2018 in AWS by Flying geek
• 3,280 points

edited Jul 10, 2023 by Khan Sarfaraz 126,760 views
+8 votes
25 answers

What is an “Edge Location” in AWS?

Let us start with brief explanation to ...READ MORE

Apr 3, 2018 in Cloud Computing by brat_1
• 7,200 points
110,997 views
+1 vote
1 answer

remote side unexpectedly closed network connection.

Hi@akhtar, A PuTTY session left idle will disconnect ...READ MORE

Aug 27, 2020 in AWS by MD
• 95,440 points

edited Jul 10, 2023 by Khan Sarfaraz 82,207 views
+2 votes
2 answers

What's the difference between IAM Roles and policies?

IAM Roles are defined as a set ...READ MORE

Aug 13, 2020 in Cloud Computing by nbavis
• 380 points
58,878 views
0 votes
2 answers

Delete a folder from an s3 bucket - aws cli

There is a delete-folder option, but you ...READ MORE

Oct 3, 2019 in AWS by Shai
55,284 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,525 views
0 votes
1 answer

How to list the contents of Amazon S3 by modified date?

One easy solution would be probably to ...READ MORE

Aug 21, 2018 in AWS by datageek
• 2,530 points
52,170 views
0 votes
1 answer

How to delete a file from S3 bucket using boto3?

You can delete the file from S3 ...READ MORE

Nov 30, 2018 in AWS by Aniket
49,527 views
+1 vote
1 answer

Accessing query parameter in Lambda with Python

Have you gone through the mapping template ...READ MORE

Dec 5, 2018 in AWS by bugseeker
49,431 views
+1 vote
1 answer

Unable to import module 'lambda_function': No module named lambda_function

Hi@akhtar, This error appears when you haven’t named ...READ MORE

Apr 28, 2020 in AWS by MD
• 95,440 points
49,133 views
+2 votes
3 answers

AWS S3 - Listing all objects inside a folder without the prefix

For Scala developers, here it is recursive ...READ MORE

Sep 20, 2018 in AWS by Priyaj
• 58,090 points
47,935 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,250 views
+1 vote
4 answers

What is the difference between Amazon ECS and Amazon EC2?

EC2 allows you to launch individual instances ...READ MORE

Jul 11, 2018 in AWS by Priyaj
• 58,090 points
42,525 views
0 votes
1 answer

Difference between Amazon ec2 and AWS Elastic Beanstalk.

EC2 EC2 is Amazon's service that allows you ...READ MORE

Jul 9, 2018 in AWS by Priyaj
• 58,090 points
41,826 views
0 votes
1 answer

Boto3 - python script to view all directories and files

There are no folders, only S3 object ...READ MORE

Sep 14, 2018 in AWS by Priyaj
• 58,090 points
40,826 views
+1 vote
3 answers

Log in to AWS using Access Key ID and Secret Access Key ID

You can also use the access key ...READ MORE

Aug 30, 2018 in AWS by eatcodesleeprepeat
• 4,710 points
39,888 views
0 votes
2 answers

How to rename a S3 bucket name?

Hi, You can rename your S3 bucket name. ...READ MORE

Oct 5, 2020 in AWS by akhtar
• 38,230 points
39,547 views
+3 votes
10 answers

Difference between s3n, s3a and s3?

S3 Native FileSystem (URI scheme: s3n) A ...READ MORE

Oct 25, 2018 in AWS by Rishab rohan
39,437 views
+1 vote
1 answer

How to delete a folder in S3 bucket using boto3 using Python?

You can delete the folder by using ...READ MORE

Nov 30, 2018 in AWS by Aniket
38,598 views
0 votes
1 answer

An error occurred (InvalidClientTokenId) when calling the GetCallerIdentity operation: The security token included in the request is invalid.

Hi@akhtar, I think there is a problem with ...READ MORE

Sep 23, 2020 in AWS by MD
• 95,440 points
38,063 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
33,956 views
+2 votes
1 answer

How to print all the instance-id and instance-state using Python boto3

You can simply loop through using a ...READ MORE

Dec 3, 2018 in AWS by Nabarupa
33,811 views
0 votes
1 answer

How to create table in Azure SQL Database?

Creating tables in Azure SQL Database: In Object Explorer, ...READ MORE

Jan 22, 2020 in Azure by Sirajul
• 59,230 points
33,575 views
0 votes
2 answers

How to restore SQL Server .bak file to Azure SQL Database?

To restore SQL Server .bak file you ...READ MORE

May 28, 2019 in Azure by sherry
• 140 points
32,884 views
+1 vote
4 answers

AWS CLI - couldn't connect to endpoint URL

You probably have something wrong in your ...READ MORE

Oct 5, 2018 in AWS by Archana
• 4,170 points
32,602 views
0 votes
1 answer

DynamoDB : The provided key element does not match the schema

The following applies to the Node.js AWS ...READ MORE

Nov 13, 2018 in AWS by Priyaj
• 58,090 points
31,731 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,479 views
+2 votes
10 answers

Querying DynamoDB by date

You can use the "day" portion in ...READ MORE

Oct 25, 2018 in Cloud Computing by abc
31,057 views
0 votes
1 answer

How to connect an EC2 linux instance to another Linux instance?

AWS EC2 instances are more like a ...READ MORE

Jul 16, 2019 in AWS by ArchanaNagur
• 2,360 points
30,738 views
0 votes
1 answer

How to create folder in your bucket using boto3?

Using Client versioning you can create folders ...READ MORE

Nov 30, 2018 in AWS by Aniket
30,049 views
+3 votes
6 answers

Renaming files in S3

You can either use AWS CLI or ...READ MORE

Oct 16, 2018 in AWS by petter dj
29,728 views
0 votes
1 answer

List All AWS EC2 Instances using boto3.

Hi@MD, You need to import the boto3 module ...READ MORE

Oct 7, 2020 in AWS by akhtar
• 38,230 points
29,411 views
+2 votes
1 answer

How to upload a file in S3 bucket using boto3 in python

You can use method of creating object ...READ MORE

Nov 30, 2018 in AWS by Aniket
28,946 views
0 votes
1 answer

How to remove a resource from Terraform state?

Hi@akhtar, First, you need to remove the resource ...READ MORE

Dec 7, 2020 in Terraform by MD
• 95,440 points
28,679 views
+3 votes
6 answers

Are the S3 buckets in AWS, Region Specific?

Yes S3 buckets are region specific. When you ...READ MORE

Oct 16, 2018 in Cloud Computing by Rijo
27,888 views
0 votes
1 answer

'terraform' is not recognized as an internal or external command, operable program or batch file.

Hi@akhtar, You have to set an environment variable ...READ MORE

Jun 10, 2020 in Terraform by MD
• 95,440 points
27,415 views
0 votes
1 answer

Can I create a GCP account for free tier without having to provide the credit card details?

You're always required to provide a credit ...READ MORE

Sep 23, 2019 in GCP by Sirajul
• 59,230 points
27,110 views
0 votes
1 answer

How to convert String to Date in Amazon Athena?

You can use date_parse. All you need ...READ MORE

Jan 16, 2019 in AWS by chandan
26,182 views
0 votes
1 answer

Azure has 3 different types of storage accounts. Is there any major difference between them?

Azure Storage provides three types of storage ...READ MORE

Mar 4, 2019 in Azure by Prerna
• 1,960 points
25,603 views
0 votes
1 answer

How to connect to Azure windows VM?

You'll use the Connect button in the Azure portal ...READ MORE

Jan 21, 2020 in Azure by Sirajul
• 59,230 points
25,161 views
+2 votes
1 answer

How to connect to EC2 file directory using SFTP and Filezilla?

To connect to EC2 instance using Filezilla, ...READ MORE

Jul 27, 2018 in Cloud Computing by Gopalan
• 1,360 points
24,949 views
+1 vote
1 answer

EC2 instance has no public DNS

Follow the given steps: Go to console.aws.amazon.com Go To Services ...READ MORE

Jul 31, 2018 in Cloud Computing by Gopalan
• 1,360 points
24,735 views
0 votes
1 answer

How to check the installed version of Terraform?

Hi@akhtar, To check the version, launch Windows PowerShell ...READ MORE

Sep 29, 2020 in Terraform by MD
• 95,440 points
24,645 views
0 votes
1 answer

ImportError: No module named boto3

Hi@akhtar, I think boto3 module is missing from ...READ MORE

Apr 28, 2020 in AWS by MD
• 95,440 points
23,946 views
+2 votes
1 answer

<Error> <Code>AccessDenied</Code> not able to connect s3 bucket.

Hi@akhtar, You have to give permissions to your ...READ MORE

Jun 3, 2020 in AWS by MD
• 95,440 points
23,743 views
0 votes
2 answers

How to configure Sendmail inside a docker container?

          Here are some reference links which ...READ MORE

Apr 10, 2019 in AWS by nmentityvibes
• 420 points
23,292 views