Created
October 8, 2014 05:59
-
-
Save alexwoolford/a9487affedc7527a3edf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ssh into your AWS instance and setup s3fs: | |
sudo yum install git gcc libstdc++-devel gcc-c++ fuse fuse-devel curl-devel libxml2-devel openssl-devel mailcap automake | |
git clone git://github.com/s3fs-fuse/s3fs-fuse.git | |
cd s3fs-fuse/ | |
./autogen.sh | |
./configure --prefix=/usr | |
make | |
sudo make install | |
echo '[AWS Access Key ID]:[AWS Secret Access Key]' | sudo tee /etc/passwd-s3fs | |
sudo chmod 400 /etc/passwd-s3fs | |
sudo mkdir /bucketxyz | |
sudo s3fs bucketxyz /bucketxyz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment