amazon s3 storage connection

Mar 21, 09:48 AM

to install:

yum install fuse*
curl http://s3fs.googlecode.com/files/s3fs-1.61.tar.gz > s3fs-1.61.tar.gz ;
gzip, tar, configure, make make install

get security credential values
(username—>securityCredentials, get Access-Key-ID and Secret access key, separated by colon “:”

create .passwd-s3fs file:

  1. cat > /root/.passwd-s3fs ;
    AKIsdfasdfsadfsdfsadQ:0sdfsdfafdasdfsadfsadf

create new mountpoint:
mkdir /mnt/s3 ;

mount bucket:
/usr/local/bin/s3fs marks-new-bucket /mnt/s3 ;

inspect mount:
fuse on /mnt/s3 type fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0)

unmount bucket:
umount /mnt/s3 ;

Mark Edwards

,

---

Commenting is closed for this article.

---