already connect to my bucket with s3tool via api method used from digital ocean. how to mount on directory and used the space
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
I am so: Transport endpoint is not connected. Please help me. Thanks
This comment has been deleted
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
I have been working with S3FS, but no luck so far configuring for DO Spaces.
See here If you make any progress, I’d love to be able to create a directory that automatically syncs with Spaces.