s3fs-fuse can be used to mount an IBM Bluemix Cloud ObjectStorage (COS) S3 API bucket as a file system on your local Linux or Mac system. Once mounted as a local file system, you can use other system tools to interact with your bucket. If you don’t yet have a COS account, see Ordering Storage
The s3fs-fuse GitHub page has all the details on building and installing the package. The build and install process I ran on a standard Ubuntu 14.04 Bluemix VM are as follows:
sudo apt-get update
sudo apt-get install automake autotools-dev g++ git libcurl4-openssl-dev libfuse-dev libssl-dev libxml2-dev make pkg-config
git clone https://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse
./autogen.sh
./configure
make
sudo make install
Note: The above command is slightly different from the instructions provided by s3fs-fuse. Testing has shown that replacing libcurl4-gnutls-dev
with libcurl4-openssl-dev
shows improved performance.
In order to configure s3fs-fuse, you need your access key id, your secret access key, and the name of the bucket you want to mount. If you don’t have this information, check out these instructions. You will also need an existing bucket that you can mount. If you don’t yet have a bucket, you can create one from the control portal. These steps will get you there.
echo "Key ID:Secret Access Key" > $HOME/.cos_creds
chmod 600 $HOME/.cos_creds
sudo mkdir /mnt/mybucket
sudo s3fs mpc-bucket-a /mnt/mybucket -o passwd_file=$HOME/.cos_creds -o sigv2 -o use_path_request_style -o url=https://s3-api.us-geo.objectstorage.service.networklayer.com
The bucket should now be mounted and available for use on the Linux system. If you have existing objects in your bucket, listing them on the Linux system will confirm you are connected.
mpcarl@dal12-swift-cos-migrator:~# cd /mnt/mybucket/
mpcarl@dal12-swift-cos-migrator:/mnt/mybucket# ls
consoleFull
Creating, editing, deleting files you see in this directory will be reflected in your COS bucket. Because the files are really objects in COS, some operations will take additional time for network transfers to complete.
If you have problems connecting or want the bucket to auto mount on reboots, the s3fs-fuse instructions have more details for you. The s3fs-fuse Wiki page is another good source of information.