Skip to main content

Posts

Showing posts from November, 2017

How to integrate AWS s3 bucket with AWS ec2 instance (Centos & Ubuntu)

In this tutorial we can check how to mount S3 bucket on your EC@ instance. S3FS is a FUSE (File System in User Space) will mount Amazon S3 as a local file system. S3FS has an ability to manipulate Amazon S3 bucket in many useful ways. If you wish to access your Amazon S3 bucket without mounting it on your server, you can use s3cmd command line utility to manage S3 bucket. What is an Amazon S3 bucket? Amazon S3 is a cloud based web service interface that you can used to store and retrieve any amount of data. To upload your data, first you need to create an S3 bucket. S3 bucket doesn't need any region. Creating a Bucket S3 provides an API for creating and managing buckets. You can create a maximum of 100 buckets from your AWS console. When you create a bucket, you need to provide a name and AWS region where you want to create the bucket. In each bucket, you can store any number of objects. You can use your AWS account root credentials to create a bucket, but it is ...