S3Clients: Difference between revisions

From UMIACS
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
There are a few workable S3 desktop clients that can be used to access Object Stores in UMIACS.  These can be used in addition to [[UMobj]] command line utilities and the built in web browser based manager.
Many popular S3 desktop clients can be used to access the UMIACS Object Store.  These tools complement the [[UMobj]] command line utilities and the built-in web interface by providing integration with the native file explorer on your desktop machine.


'''Note''': Many of these clients have features that are just not supported by our Object Stores in UMIACS.  This includes permissions, which we suggest you manage from the built-in web application for your Object Store.
'''Note''': Many of these clients have features that are just not supported by our Object Stores in UMIACS.  This includes permissions, which we suggest you manage permissions from the built-in web application for the Object Store.


==Dragon Disk==
==Dragon Disk==
* http://www.dragondisk.com/
* http://www.dragondisk.com/


This is a free cross platform QT based S3 client supports Windows, Mac and Linux.  It supports our S3 Object Stores using the "Other S3 compatible service" drop down menu choice in the add account dialog.  The following fields are required.
This is a free, cross platform S3 client that supports Windows, Mac and Linux.  To configure Dragon Disk, select the "Other S3 compatible service" dropdown menu choice in the add account dialog.  The following fields are required.


* '''Service Endpoint''' - This should be your object store, <code>obj.umiacs.umd.edu</code> or <code>gembox.cbcb.umd.edu</code>
* '''Service Endpoint''' - This should be your object store, <code>obj.umiacs.umd.edu</code> or <code>gembox.cbcb.umd.edu</code>
Line 21: Line 21:
* '''Username''' - This is your access key as provided to you in the object store
* '''Username''' - This is your access key as provided to you in the object store


You will be prompted for your secret key when you connect and may choose to save the password in the appropriate store for your operating system.
You will be prompted for your secret key when you connect and may choose to save the password.


==Transmit==
==Transmit==
* http://panic.com/transmit/
* http://panic.com/transmit/
This is a paid ($34) file transfer application for Mac.  It supports our S3 Object Stores using the "S3" menu choice after clicking the plus sign to add a favorite.  The following fields are required:
This is a paid file transfer application for Mac.  It supports our S3 Object Stores using the "S3" menu choice after clicking the plus sign to add a favorite.  The following fields are required:


* '''Server''' - This should be your object store: <code>obj.umiacs.umd.edu</code> or <code>gembox.cbcb.umd.edu</code>
* '''Server''' - This should be your object store: <code>obj.umiacs.umd.edu</code> or <code>gembox.cbcb.umd.edu</code>
Line 31: Line 31:
* '''Secret''' - This is your secret key as provided to you in the object store
* '''Secret''' - This is your secret key as provided to you in the object store


These settings can be saved as a favorite for easy access.  Transmit also allows you to take a bucket or the root namespace containing all of your buckets and mount it as a disk.
These settings can be saved as a favorite for easy access.  Transmit also allows you to mount your Obj buckets as local disks, which will support easy drag-and-drop of files.


==s3cmd==
==s3cmd==
Command line client for accessing S3 like services.
Command line client for accessing S3 like services.


* https://github.com/s3tools/s3cmd/
* http://s3tools.org/s3cmd


You need to configure a file like <code>~/.s3cmd</code> that looks like the following with your ACCESS_KEY and SECRET_KEY substituted.
You need to configure a file like <code>~/.s3cmd</code> that looks like the following with your ACCESS_KEY and SECRET_KEY substituted.

Revision as of 15:54, 4 December 2017

Many popular S3 desktop clients can be used to access the UMIACS Object Store. These tools complement the UMobj command line utilities and the built-in web interface by providing integration with the native file explorer on your desktop machine.

Note: Many of these clients have features that are just not supported by our Object Stores in UMIACS. This includes permissions, which we suggest you manage permissions from the built-in web application for the Object Store.

Dragon Disk

This is a free, cross platform S3 client that supports Windows, Mac and Linux. To configure Dragon Disk, select the "Other S3 compatible service" dropdown menu choice in the add account dialog. The following fields are required.

  • Service Endpoint - This should be your object store, obj.umiacs.umd.edu or gembox.cbcb.umd.edu
  • Access Key - This is your access key as provided to you in the object store
  • Secret Key - This is your secret key as provided to you in the object store
  • Connect using SSL/HTTPS - Please toggle the checkbox.

Cyberduck

This is a free Windows and Mac S3 browser (it is however nagware that asks for a donation). It supports our S3 Object Stores using the "S3 (Amazon Simple Storage Service)" drop down menu choice in the add bookmark dialog. The following fields are required.

  • Server - This should be your object store, obj.umiacs.umd.edu or gembox.cbcb.umd.edu
  • Username - This is your access key as provided to you in the object store

You will be prompted for your secret key when you connect and may choose to save the password.

Transmit

This is a paid file transfer application for Mac. It supports our S3 Object Stores using the "S3" menu choice after clicking the plus sign to add a favorite. The following fields are required:

  • Server - This should be your object store: obj.umiacs.umd.edu or gembox.cbcb.umd.edu
  • Access Key ID - This is your access key as provided to you in the object store
  • Secret - This is your secret key as provided to you in the object store

These settings can be saved as a favorite for easy access. Transmit also allows you to mount your Obj buckets as local disks, which will support easy drag-and-drop of files.

s3cmd

Command line client for accessing S3 like services.

You need to configure a file like ~/.s3cmd that looks like the following with your ACCESS_KEY and SECRET_KEY substituted.

[default]
access_key = ACCESS_KEY
host_base = obj.umiacs.umd.edu
host_bucket = %(bucket)s.obj.umiacs.umd.edu
secret_key = SECRET_KEY
use_https = True