UMobj: Difference between revisions

From UMIACS
Jump to navigation Jump to search
No edit summary
 
(47 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This is a set of console utilities that are available on all UMIACS supported machines.  They are provided to support our Ceph Object Stores so our users may interact with them on the command line.   In addition each Ceph Object Store in UMIACS has fully functional web application that allows access to your storage from any web browser.
The UMobj suite of utilities provide command-line access to the [https://obj.umiacs.umd.edu/obj UMIACS Object Store].  UMobj is preinstalled on all UMIACS-supported Linux machines.


For UMIACS support machines these utilities are installed at <code>/opt/UMobj/bin</code> however they should already be available in your path.
==When to use UMobj==
Use umobj if:
* you have a large number of files to upload (hundreds or thousands of files)
* you are uploading large files (files greater than 4GB in size)


==Prerequisites==
==Setup==
We highly recommend setting a few environmental variables containing your credentials for
convenience.  When logged into the Object Store web interface (see list above), you can
find these credentials on the user page.  E.g. https://obj.umiacs.umd.edu/obj/user/


To use any of these utilities you either have to pass in on the command line your access and secret keys or you need to set some appropriate environmental variables.  You can obtain your access and secret keys (which are different from your username and password) by visiting the appropriate Ceph Object Store. The default store is https://obj.umiacs.umd.edu/UMobjstore/user.
For example, if you use the <tt>bash</tt> shell, you can add something like the following to your
<tt>.bashrc</tt> or <tt>.bash_profile</tt>.


In that page will be your access and secret keys for that Ceph Object Store.  You can then set for example in bash the following environment variables.
<pre>
 
export OBJ_ACCESS_KEY_ID="31sdfadDFAHFDN+344qOEIS"
  export OBJ_ACCESS_KEY_ID="31sdfadDFAHFDN+344qOEIS"
export OBJ_SECRET_ACCESS_KEY="NDSMK3233adfahadflkkPDSH092DSJKDKDJKFDLSFLNK"
  export OBJ_SECRET_ACCESS_KEY="NDSMK3233adfahadflkkPDSH092DSJKDKDJKFDLSFLNK"
export OBJ_SERVER="obj.umiacs.umd.edu"
 
</pre>
If you are not using the default Ceph Object Store you can tell the utilities to use an alternative server.
 
  export OBJ_SERVER="gembox.cbcb.umd.edu"
 
You can optionally use the <code>--access_key</code>, <code>--secret_key</code> and <code>--server</code> switches to the utilities.


==lsobj==
Or in tcsh you can do the following or add it into your <tt>.tcshrc</tt>.
 
To list the object store you can use the <b>lsobj</b> command.  If given without a argument it will list your buckets (this will only list buckets that you created).  You can then give it a bucket to list the contents within the bucket (if you were granted access to a bucket you didn't create you can also use it).


<pre>
<pre>
$ lsobj
setenv OBJ_ACCESS_KEY_ID "31sdfadDFAHFDN+344qOEIS"
bob
setenv OBJ_SECRET_ACCESS_KEY "NDSMK3233adfahadflkkPDSH092DSJKDKDJKFDLSFLNK"
test
setenv OBJ_SERVER "obj.umiacs.umd.edu"
zeta
</pre>
</pre>


<pre>
==Detailed Usage==
$ lsobj test
For an example of how to use UMobj, please see [[UMobj/Example]].
-rwx--- 2013-10-04T15:25:09.000Z     1.8 KB UMIACSCA.pem
 
-rwx--- 2013-10-04T15:25:24.000Z   311.4 KB cover.jpg
For complete usage information, please see the [[GitLab]] page for [https://gitlab.umiacs.umd.edu/staff/umobj/blob/master/README.md#umobj umobj].
-rwx--- 2013-10-04T15:25:32.000Z   31.8 KB screenshot.jpg
================================================================================
TOTAL:    345.0 KB 3 Files
</pre>

Latest revision as of 16:28, 4 January 2021

The UMobj suite of utilities provide command-line access to the UMIACS Object Store. UMobj is preinstalled on all UMIACS-supported Linux machines.

When to use UMobj

Use umobj if:

  • you have a large number of files to upload (hundreds or thousands of files)
  • you are uploading large files (files greater than 4GB in size)

Setup

We highly recommend setting a few environmental variables containing your credentials for convenience. When logged into the Object Store web interface (see list above), you can find these credentials on the user page. E.g. https://obj.umiacs.umd.edu/obj/user/

For example, if you use the bash shell, you can add something like the following to your .bashrc or .bash_profile.

export OBJ_ACCESS_KEY_ID="31sdfadDFAHFDN+344qOEIS"
export OBJ_SECRET_ACCESS_KEY="NDSMK3233adfahadflkkPDSH092DSJKDKDJKFDLSFLNK"
export OBJ_SERVER="obj.umiacs.umd.edu"

Or in tcsh you can do the following or add it into your .tcshrc.

setenv OBJ_ACCESS_KEY_ID "31sdfadDFAHFDN+344qOEIS"
setenv OBJ_SECRET_ACCESS_KEY "NDSMK3233adfahadflkkPDSH092DSJKDKDJKFDLSFLNK"
setenv OBJ_SERVER "obj.umiacs.umd.edu"

Detailed Usage

For an example of how to use UMobj, please see UMobj/Example.

For complete usage information, please see the GitLab page for umobj.