Has anyone been successful in mounting a bucket using s3fs-fuse?
I think I have the options correct, but am getting this when trying to mount/connect:
CURLE_SSL_CONNECT_ERROR
[hr]
Nevermind. I figured it out.
I was using https in my url, which did not agree with the link that Dreamhost gives me for that bucket.
So, when setting the option for url in sf3s, I did this:
s3fs nameofmybucket /mnt/bucket -o url=https://objects.dreamhost.com
but should have used:
s3fs nameofmybucket /mnt/bucket -o url=http://objects.dreamhost.com
and now it seems to be working.