s3 mount point, mount non-empty directory

0

Hello, is it possible to mount a folder that is not empty with s3 mount point? I can't find related information. This is the error I get: use: mountpoint is not empty fuse: if you are sure this is safe, use the 'nonempty' mount option Error: Failed to create FUSE session

Caused by: No such file or directory (os error 2) Error: Failed to create mount process

已提问 2 个月前593 查看次数
1 回答
0

To resolve the first issue and mount your S3 bucket to a non-empty directory, you should modify your mount command to include the nonempty option.

For the second issue, ensure that the path you are trying to mount to actually exists on your filesystem. If the path is correct, review your mount command for any typos or configuration errors.

profile picture
专家
已回答 2 个月前
profile picture
专家
已审核 1 个月前
  • I don't see that the mount-s3 service has that option:

    Usage: mount-s3 <BUCKET_NAME|DIRECTORY|--prefix <PREFIX>|--region <REGION>|--endpoint-url <ENDPOINT_URL>|--force-path-style|--transfer-acceleration|--dual-stack|--requester-pays|--bucket-type <BUCKET_TYPE>|--no-sign-request|--profile <PROFILE>|--read-only|--storage-class <STORAGE_CLASS>|--allow-delete|--allow-overwrite|--auto-unmount|--allow-root|--allow-other|--maximum-throughput-gbps <N>|--max-threads <N>|--part-size <PART_SIZE>|--uid <UID>|--gid<GID>|--dir-mode <DIR_MODE>|--file-mode <FILE_MODE>|--foreground|--expected-bucket-owner <AWS_ACCOUNT_ID>|--log-directory <DIRECTORY>|--log-metrics|--debug|--debug-crt|--no-log|--cache <DIRECTORY>|--metadata-ttl <SECONDS>|--max-cache-size <MiB>|--user-agent-prefix <PREFIX>>

  • you might consider alternative methods or tools for mounting S3 buckets, such as s3fs-fuse, which supports the nonempty option. With s3fs-fuse, you can typically add the nonempty option to the mount command like so:

    s3fs yourbucketname /path/to/mountpoint -o nonempty

    Make sure to replace yourbucketname with your actual S3 bucket name and /path/to/mountpoint with your desired mount point.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则