Hostwinds Tutorials
Search results for:
Table of Contents
Tags: CentOS Web Panel, VPS
Having S3 File System (s3fs) allows users to use remote object storage containers as a local file system. This means Object Storage can be mounted to a Virtual Private Server (VPS), and users can have access to scalable, static storage locally. Object storage can be used for storing backups, file-sharing, or other unstructured data.
The guide below will explain the steps required to mount Object Storage to a CentOS 7 server.
Access your VPS via SSH as the root user or a user with sudo access. Next, install s3fs-fuse with the following:
yum install gcc libstdc++-devel gcc-c++ fuse fuse-devel curl-devel libxml2-devel mailcap git automake make
yum install openssl-devel
git clone https://github.com/s3fs-fuse/s3fs-fuse
cd s3fs-fuse/
./autogen.sh
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
./configure --prefix=/usr --with-openssl
make
sudo make install
After completing the installation, you can retrieve your Object Storage API information from Hostwinds' Cloud Control portal. Navigate from the client area to the Cloud Portal.
Next, select Storage > Object Storage.
Select Create Container. Name the container and select your preference of Hostwinds data center locations.
Next, select Object API Info. You will need your Access Key, Secret Key, and API Endpoint for the selected location. Store this information temporarily for the following steps, or leave this page open while proceeding.
Using a text editor, create your credentials file:
vi /etc/passwd-s3fs
Then enter your Hostwinds API credentials in the first line of the new file, in the format:
ACCESS_KEY: SECRET_KEY
Next, change the permissions of this file:
chmod 600 /etc/passwd-s3fs
Now you can create your mount point and the cache for the container. Use a mount point similar to below. It does not need to be called my-container:
mkdir /tmp/cache /mnt/my-container
Change the permissions:
chmod 777 /tmp/cache /mnt/my-container
Finally, you will need to add a line to /etc/fstab:
vi /etc/fstab
fstab has 6 columns. Be careful to add the following to your new line, separated by spaces:
You will need your own \, \, and \
Lastly, mount the container using:
mount -a
Reboot, and verify that the container stays mounted on boot by running:
df -h
The output should be similar to:
Now you have access to far more storage at $0.03/GB/month!
To mount additional containers from the same data center location:
To mount additional containers from a different data center location:
Written by Hostwinds Team / June 5, 2021