今からお前んちこいよ

ベルリンにて細々とお勉強。

goofysを使ってAWSのEC2にS3バケットをマウントする[centos6]

日本語 | English

AWSのS3バケットをEC2にマウントしたらサーバ内からバケット操作できるので便利だった。サーバ間のデータ受け渡しもこれでscpから卒業。

使ったのは goofys 、Go言語でできてる。これ以前の主流は s3fs でC++でできてる。 s3fs より goofys の方がだいぶ速いらしい。後述する参考記事にいろいろ書いてある。

なお、golang
CentOS/RHEL 5.x not supported
とのことでcentos5系は無理。

環境

  • CentOS 6.6
  • fuse 2.8.3
  • Go 1.6.2
  • goofys 0.0.5

手順

install

User: root (良くないんだけどね)

fuse

$ yum install fuse

golang

$ cd ~/
$ wget https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz
$ tar xvf go1.6.2.linux-amd64.tar.gz
$ mv go .go
$ rm go1.6.2.linux-amd64.tar.gz
$ mkdir bin
$ mkdir gocode
$ ln -s ~/.go/bin/go ~/bin/go
$ vim .bashrc
export GOROOT=$HOME/.go   //こいつを追記
export GOPATH=$HOME/gocode   //こいつを追記

goofys

$ go get github.com/kahing/goofys
$ go install github.com/kahing/goofys

mount

export HTTP_PROXY=<必要であれば>
export HTTPS_PROXY=<必要であれば>
$ mkdir s3  <-- mount-point
$ vim .aws/credentials
[s3]
aws_access_key_id=<ACCESS_KEY>
aws_secret_access_key=<SECRET_KEY>

$ $GOPATH/bin/goofys --region ap-northeast-1 --profile s3 <バケット名> ~/s3

容量は… にごろぺた! すごい!

Filesystem      Size  Used Avail Use% Mounted on
/dev/xvda1       30G  8.6G   20G  31% /
tmpfs           498M     0  498M   0% /dev/shm
<バケット名>     256P     0  256P   0% /root/s3

Tips

オプション

-f でフォワード実行なのでデバック時に便利だった
他オプションたち

   --help, -h                   Print this help text and exit successfuly.
   -o [-o option -o option]     Additional system-specific mount options. Be careful!
   --dir-mode "493"             Permissions bits for directories. (default: 0755)
   --file-mode "420"            Permission bits for files (default: 0644)
   --uid "0"                    UID owner of all inodes.
   --gid "0"                    GID owner of all inodes.
   --endpoint                   The non-AWS endpoint to connect to. Possible values: http://127.0.0.1:8081/
   --region "us-west-2"         The non-AWS endpoint to connect to. Possible values: us-east-1, us-west-1, us-west-2, eu-west-1, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1, cn-north-1
   --storage-class "STANDARD"   The type of storage to use when writing objects. Possible values: REDUCED_REDUNDANCY, STANDARD (default), STANDARD_IA.
   --use-path-request           Use a path-style request instead of virtual host-style. (deprecated, always on)
   --profile                    Use a named profile from $HOME/.aws/credentials instead of "default"
   --stat-cache-ttl "1m0s"      How long to cache StatObject results and inode attributes.
   --type-cache-ttl "1m0s"      How long to cache name -> file/dir mappings in directory inodes.
   --debug_fuse                 Enable fuse-related debugging output.
   --debug_s3                   Enable S3-related debugging output.
   -f                           Run goofys in foreground.
   --version, -v                print the version

参考)
http://dev.classmethod.jp/cloud/aws/how-to-use-s3fs-goofys/