Category
- 1/43 Car's (246)
- Bouldering (14)
- Camera (32)
- Computer (41)
- Everyday (134)
- Goods (12)
- Linux (49)
- Music (32)
- Photo (65)
- Plant (33)
- Plastic Model (58)
- Trekking (43)
- WordPress (35)
It's blog written about Trekking ,1/43 MiniCar , Plastic Model , Photo , Computing.
RSSAWS(Amazon Web Service)のS3(Scalable Storage in the Cloud)を
s3fsを使用して自宅サーバー(Fedora)にマウントしてみました。
1.アクセス―とシークレットキーを取得
(2014/5/9現在の取得方法です)
右上のアカウント名称から「My Account」→「セキュリティ証明書」
→ページ前半の「Your Security Credentials(セキュリティ認証情報)」
→「Access Keys (Access Key ID and Secret Access Key)」
→「Create New Access Key」で作成し「Show Access Key」に
アクセスキーとシークレットキーが表示されますので
コピーして保存しておきましょう。
2.バケットを作成
AWSマネージメントコンソールから「S3」を選択。
「Create Bucket」でバケットを作成。
3.s3fsのMakeに必要なライブラリをインストール
1 |
# yum install libstdc++-devel gcc-c++ fuse fuse-devel curl-devel libxml2-devel openssl-devel mailcap |
4.s3fsパッケージをダウンロードしてmakeでインストール
1 2 3 4 5 6 7 |
# cd /usr/local/src/ # wget http://s3fs.googlecode.com/files/s3fs-1.62.tar.gz # tar xvzf s3fs-1.62.tar.gz # cd s3fs-1.62/ # ./configure --prefix=/usr # make # make install |
5.アクセスキーとシークレットキーを設定
1 2 3 4 5 |
# vi /etc/passwd-s3fs ----------------------------- [アクセスキー]:[シークレットキー] #[]は要りません ----------------------------- # chmod 640 /etc/passwd-s3fs |
6.マウントする
1 |
# s3fs [バケット名] [マウントポイント] -o allow_other |
7.自動マウントする
1 2 3 4 |
# vi /etc/fstab ----以下を追記----------- s3fs#[バケット名] [マウントポイント] fuse allow_other 0 0 -------------------- |
これで、自宅サーバーにS3がマウント出来ました。
現在は無料枠で5Gしか有りませんから、ストレージとしてはイマイチかな?