Read-only Access to a Public Minio S3 without Access Key and Secret Key

How can we configure a remote to access a public Minio s3 server in read-only mode with just specifying the end point and bucket name without access key and secret key? I can do it using mc or R, but not with rclone.

hello and welcome to the forum,

create a remote that looks like

[remote]
type = s3
provider = Minio
endpoint = your.endpoint.com

and a command that looks like
rclone ls remote:bucketname


another option, without using a remote and config file, is to use a connection string
rclone ls :s3,endpoint=your.endpoint.com,provider=Minio:bucketname

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.