Error message when mounting S3 bucket with S3FS

Hi,
I am trying to set copy some files into a bucket that I have mounted S3FS, but I get the following error:

2020-02-01T18:41:49.388+0100 ERROR gateway error: {“error”: “bucket: metainfo error: metainfo error: bucket name must be at least 3 and no more than 63 characters long”, “errorVerbose”: “bucket: metainfo error: metainfo error: bucket name must be at least 3 and no more than 63 characters long\n\tstorj.io/uplink/metainfo.(*Client).CreateBucket:163\n\tstorj.io/uplink/metainfo/kvmetainfo.(*Project).CreateBucket:50\n\tstorj.io/storj/lib/uplink.(*Project).CreateBucket:117\n\tstorj.io/storj/pkg/miniogw.(*gatewayLayer).MakeBucketWithLocation:392\n\tstorj.io/storj/pkg/miniogw.(*layerLogging).MakeBucketWithLocation:65\n\tgithub.com/minio/minio/cmd.objectAPIHandlers.PutBucketHandler:364\n\tnet/http.HandlerFunc.ServeHTTP:2007\n\tgithub.com/gorilla/mux.(*Router).ServeHTTP:212\n\tgithub.com/minio/minio/cmd.securityHeaderHandler.ServeHTTP:657\n\tgithub.com/minio/minio/cmd.rateLimit.ServeHTTP:642\n\tgithub.com/minio/minio/cmd.pathValidityHandler.ServeHTTP:602\n\tgithub.com/minio/minio/cmd.httpStatsHandler.ServeHTTP:541\n\tgithub.com/minio/minio/cmd.requestSizeLimitHandler.ServeHTTP:66\n\tgithub.com/minio/minio/cmd.requestHeaderSizeLimitHandler.ServeHTTP:91\n\tgithub.com/minio/minio/cmd.crossDomainPolicy.ServeHTTP:51\n\tgithub.com/minio/minio/cmd.redirectHandler.ServeHTTP:243\n\tgithub.com/minio/minio/cmd.minioReservedBucketHandler.ServeHTTP:301\n\tgithub.com/minio/minio/cmd.cacheControlHandler.ServeHTTP:270\n\tgithub.com/minio/minio/cmd.timeValidityHandler.ServeHTTP:371\n\tgithub.com/rs/cors.(*Cors).Handler.func1:200\n\tnet/http.HandlerFunc.ServeHTTP:2007\n\tgithub.com/minio/minio/cmd.resourceHandler.ServeHTTP:492\n\tgithub.com/minio/minio/cmd.authHandler.ServeHTTP:300\n\tgithub.com/minio/minio/cmd.reservedMetadataHandler.ServeHTTP:134\n\tgithub.com/minio/minio/cmd/http.(*Server).Start.func1:108\n\tnet/http.HandlerFunc.ServeHTTP:2007\n\tnet/http.serverHandler.ServeHTTP:2802\n\tnet/http.(*conn).serve:1890”}

S3FS outputs no errors, and it appears that it can mount the bucket.
The buckets name is called “test”

I had a similar idea, did you ever solve this?

Please, show your s3fs command

I have tried
Created a file with an Access Key and Secret Key:

echo ACCESS_KEY_ID:SECRET_ACCESS_KEY > ${HOME}/.passwd-s3fs
chmod 600 ${HOME}/.passwd-s3fs

Then executed the command

mkdir ~/test
s3fs test ~/test/ -o passwd_file=${HOME}/.passwd-s3fs -o url=https://gateway.eu1.storjshare.io/ -o use_path_request_style

And copied several files

cp identity_linux_amd64 test/

Check

ls test/
2.txt  identity_linux_amd64  vera

And removed

rm test/identity_linux_amd64

Then unmount

umount ~/test

I would say that rclone mount works better (faster)