By genworkltd
already connect to my bucket with s3tool via api method used from digital ocean. how to mount on directory and used the space
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
In general, object storage solutions like Spaces are not meant to be accessed like a file system. They are API driven and most often used programmatically. Block storage, on the other hand, works almost like attaching a USB drive to your laptop. It gives you new drive with expanded storage. Check out this tutorial to learn more about the differences between the two and if object storage is right for your use case.
If your use case really requires mounting your Space like a local filesystem, s3fs-fuse is probably the tool you are looking for. On Ubuntu, you can install it with:
- sudo apt install s3fs
You’ll also need to get your Spaces access key and secret key (see here).
Then add those credentials to ~/.passwd-s3fs, create the local directory, and mount your Space:
- echo $SPACES_KEY:$SPACES_SECRET > ~/.passwd-s3fs
- mkdir -p /path/to/local/directory
- s3fs your-space /path/to/local/directory -ourl=https://nyc3.digitaloceanspaces.com -ouse_cache=/tmp
This comment has been deleted
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.