Changes between Version 2 and Version 3 of HowToUseiRODS


Ignore:
Timestamp:
07/19/13 16:55:36 (11 years ago)
Author:
Jeanne Ohren
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToUseiRODS

    v2 v3  
     1
     2= How To Install, Access, and Use iRODS clients =
     3
     4This page provides an overview on how to install, access, and use a few different clients to access your data stored on iRODS.
     5
     6== What is iRODS? ==
     7
     8iRODS™, the Integrated Rule-Oriented Data System, is a data grid software system used by GENI to store configuration, state, and measurement data associated with an experiment.
     9More information on iRODS can be found at [http://www.irods.org]
    110
    211== Clients ==
    312
     13iRODS data can be accessed, managed, and manipulated using iRODS clients such as icommands, an iRODS web interface, and the iDrop interface.  The icommands client must be installed and executed whereas the web interface and iDrop interface can both be accessed using a common web browser.
     14
    415=== icommands ===
     16
     17The icommands client is a command line interface that can be installed on Unix-based operating systems (Linux, Solaris, Macintosh, AIX) as well as Windows platforms.
    518
    619==== Installation  ====
    720
     21The software for the icommands client can be downloaded from [https://www.irods.org/index.php/Downloads].  Installation instructions for all supported platforms can be found at [https://www.irods.org/index.php/Installation].
     22
    823==== Configure iRODS environment ====
     24
     25Once the icommands client has been installed, you must then configure you iRODS environment.  This can be done by editing $HOME/.irods/.irodsEnv.  You can set the contents of this file using the configuration given to you by the GENI Portal when creating your account there.
     26
     27
     28You can then run ''iinit'' to cache your password so you do not have to keep typing it for each command.  Your password will be saved as a hash so it cannot be viewed by anyone.
     29
     30{{{
     31$ iinit
     32Enter your current iRODS password:
     33$
     34}}}
     35
    936
    1037==== Change password ====
    1138
     39When you create your iRODS account in the GENI Portal, you will be given a temporary password that will not be saved anywhere.  You should change your password immediately so you do not risk the chance of losing or forgetting it.
     40To change your password with the icommands client, you simply need to run the ''ipasswd'' command:
     41
     42{{{
     43$ ipasswd
     44Enter your current iRODS password:
     45Enter your new iRODS password:
     46Reenter your new iRODS password:
     47$
     48}}}
    1249
    1350== Web interface ==
    14