Amazon S3 es un servicio de almacenamiento masivo de información con unos costes bastante aceptables. Para poder manejarlo hay varias herramientas pero para mi la más cómoda es s3cmd, un sencillo programa en línea de comandos que nos permite manejar nuestra cuenta en S3.
Lo primero es instalarlo, desde debian o ubuntu con un simple
[shell]apt-get install s3cmd[/shell]
lo tenemos listo y si no podéis ir a http://s3tools.org/download y descargarlo desde allí.
Inmediatamente deberíamos configurarlo, para ello hay que ejecutarlo con el parámetro –configure
s3cmd –configure
Lo primero que nos va a pedir el «Access Key» y el «Secret Key» de nuestra cuenta de Amazon. Para obtenerlos debemos ir a la página de Amazon, menú «cuenta» -> «Credenciales de Seguridad»
Después nos pedirá una clave que se utilizará para cifrar todo lo que se suba a Amazon y algunos datos más como la ruta del gpg y datos si estuvieramos detrás de un firewall. Al final del proceso nos crea un fichero .s3cfg en nuestro directorio de usuario.
Los comandos de s3cmd son:
- Make bucket [shell]s3cmd mb s3://BUCKET[/shell]
- Remove bucket [shell]s3cmd rb s3://BUCKET[/shell]
- List objects or buckets [shell]s3cmd ls [s3://BUCKET[/PREFIX]][/shell]
- List all object in all buckets [shell]s3cmd la[/shell]
- Put file into bucket [shell]s3cmd put FILE [FILE…] s3://BUCKET[/PREFIX][/shell]
- Get file from bucket [shell]s3cmd get s3://BUCKET/OBJECT LOCAL_FILE[/shell]
- Delete file from bucket [shell]s3cmd del s3://BUCKET/OBJECT[/shell]
- Synchronize a directory tree to S3 [shell]s3cmd sync LOCAL_DIR s3://BUCKET[/PREFIX] or s3://BUCKET[/PREFIX] LOCAL_DIR[/shell]
- Disk usage by buckets [shell]s3cmd du [s3://BUCKET[/PREFIX]][/shell]
- Get various information about Buckets or Files [shell]s3cmd info s3://BUCKET[/OBJECT][/shell]
- Copy object [shell]s3cmd cp s3://BUCKET1/OBJECT1 s3://BUCKET2[/OBJECT2][/shell]
- Move object [shell]s3cmd mv s3://BUCKET1/OBJECT1 s3://BUCKET2[/OBJECT2][/shell]
- Modify Access control list for Bucket or Files [shell]s3cmd setacl s3://BUCKET[/OBJECT][/shell]
- Sign arbitrary string using the secret key [shell]s3cmd sign STRING-TO-SIGN[/shell]
- Fix invalid file names in a bucket [shell]s3cmd fixbucket s3://BUCKET[/PREFIX][/shell]
- List CloudFront distribution points [shell]s3cmd cflist[/shell]
- Display CloudFront distribution point parameters [shell]s3cmd cfinfo [cf language="://DIST_ID"][/cf][/cf][/shell]
- Create CloudFront distribution point [shell]s3cmd cfcreate s3://BUCKET[/shell]
- Delete CloudFront distribution point [shell]s3cmd cfdelete cf://DIST_ID[/shell]
- Change CloudFront distribution point parameters [shell]s3cmd cfmodify cf://DIST_ID[/shell]
Los comandos básicos con ficheros son put para subir todo el contenido al bucket, get para descargarlo y sync para sincronizar los contenidos.
P.E.:
[shell]s3cmd sync –delete-remove –recursive /mi-directorio/datos/ s3://BUCKET/datos-de-mi-directorio/[/shell]