22
0
Fork 0

ceph: Ajouter création et suppression bucket

This commit is contained in:
Alexis Ben Miloud--Josselin 2022-11-24 17:27:35 +01:00
parent 134624a7c1
commit 0f885fb227
1 changed files with 11 additions and 0 deletions

View File

@ -893,6 +893,12 @@ mc alias set <alias> http://<hote> <access_key> <secret_key>
> La configuration est écrite dans le fichier `~/.mc/config.json`
Pour créer un _bucket_ :
```
mc mb <alias>/<bucket>
```
Pour lister les objets dans un _bucket_ :
```
@ -905,6 +911,11 @@ Pour _upload_ un fichier :
mc mv mon_fichier <alias>/<bucket>/
```
Pour supprimer un _bucket_ :
```
mc rb <alias>/<bucket>
```
# Troubleshooting