1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-05 22:33:22 +02:00
tldr/pages/common/mcli.md

18 lines
398 B
Markdown
Raw Normal View History

2025-06-30 18:12:31 +02:00
# mcli
2025-06-30 18:29:02 +02:00
> MinIO Client for object storage and filesystems.
> May be named `mc` on some systems.
2025-06-30 18:12:31 +02:00
> More information: <https://minio.github.io/mc/>.
- Add connection to a S3 server:
`mcli alias set {{local}} {{http://localhost:9000}} {{access_key}} {{secret_key}}`
- Create a bucket:
`mcli mb {{local/bucket_name}}`
- List buckets and their content recursively:
2025-06-30 18:15:58 +02:00
`mcli ls {{local}} --recursive`