Outils pour utilisateurs

Outils du site


tech:notes_minio_s3

Ceci est une ancienne révision du document !


Notes MinIO s3

Then open a web browser to http://localhost:9001/ and enter the default credentials:

Username minioadmin
Password minioadmin

Next, navigate to “Buckets”, click the “Create Bucket” button in the top right corner and then click the “Save” icon. Name your bucket, “mybkt”.

Source : https://litestream.io/getting-started/

Client mc

mkdir -p ~/minio/data
nerdctm run \
   -p 9000:9000 \
   -p 9001:9001 \
   --name minio \
   -v ~/minio/data:/data \
   -e "MINIO_ROOT_USER=ROOTNAME" \
   -e "MINIO_ROOT_PASSWORD=CHANGEME123" \
   quay.io/minio/minio server /data --console-address ":9001"
mc alias set myminio http://127.0.0.1:9000 ROOTNAME CHANGEME123
mc admin info myminio
mc mb myminio/plop
mc put ~/Documents/k8s_kind.txt myminio/plop/

https://github.com/minio/mc

 mc --autocompletion 

URL check ping http://localhost:9000/minio/health/live

tech/notes_minio_s3.1758225356.txt.gz · Dernière modification : de Jean-Baptiste

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki