Changes between Initial Version and Version 1 of chwhs/Grid_environment/GW_DRBL


Ignore:
Timestamp:
Oct 14, 2008, 5:37:25 PM (16 years ago)
Author:
chwhs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • chwhs/Grid_environment/GW_DRBL

    v1 v1  
     1= Grid_environment =
     2== How to Configure GridWay Based on DRBL ==
     3
     4 * 1. Introduction [[BR]][[BR]]
     5  * GridWay is a Globus project, which provides scheduling functionalities similar to distributed resource management systems. GridWay interfaces to remote resources through Globus GRAM job manager. GridWay meta-scheduler integrates with the remote platforms and resource managers (Fork, PBS, SGE, LSF, LoadLeveler and Condor) compatible with Globus.
     6
     7 * 2. Configure GridWay on the DRBL server and clients [[BR]][[BR]]
     8  * Building and installing GridWay based on DRBL is very easy. You only install on the DRBL server by consulting [http://www.gridway.org/documentation/stable5.4/GWAdmin.pdf GridWay 5.4 System Administrator's Guide] and then configure the file:gwd.conf. To uncomment the last three lines and modify the server name.
     9{{{
     10#
     11# Example MAD Configuration for WS testbeds
     12#
     13IM_MAD = mds4:gw_im_mad_mds4_thr:-s drbl-srv.nchc.org.tw:gridftp:ws
     14EM_MAD = ws:gw_em_mad_ws::rsl2
     15TM_MAD = gridftp:gw_tm_mad_ftp:
     16}}}
     17  * IM_MADs is Information Manager Middleware Access Drivers. They are responsible for host discovery and monitoring. You can reference [http://www.gridway.org/documentation/stable5.4/GWAdmin.pdf GridWay 5.4 System Administrator's Guide 3.4. Information Driver Configuration] and [http://www.globus.org/toolkit/docs/latest-stable/admin/quickstart/#q-vo GT 4.2 Quickstart 3. VO-level services] to set up gwd. [[BR]][[BR]]
     18  * Finally, you can start the gwd daemon to perform GridWay successfully on the DRBL server and clients. [[BR]][[BR]]
     19
     20 * 3. Troubleshooting [[BR]][[BR]]
     21  * (1) Could not create remote job directory (gsiftp://pc111.nchc.org.tw/~/.gw_gwuser_3/). [[BR]][[BR]]
     22   * Please check Gridftp. You can reference [http://www.globus.org/toolkit/docs/latest-stable/admin/quickstart/#q-gridftp Set up GridFTP].[[BR]][[BR]]
     23  * (2) Copy of file stdout.wrapper failed. Copy of file stderr.wrapper failed. Some output files were not copied, will NOT remove remote directory.[[BR]][[BR]]
     24   * At first, you should check if the GridWay administrator and all GridWay users are the same UNIX group. The permission of the job working directory($GW_JOB_HOME) should be written by the GridWay users. You can try "chmod g+w $GW_JOB_HOME".[[BR]][[BR]]
     25  * (3) Transfer MAD ($nice) not loaded for user gwuser[[BR]][[BR]]
     26   * The setting format of the configuration file (gwd.conf) in older versions and new version are different. [[BR]][[BR]]
     27{{{
     28older versions:
     29IM_MAD = <mad_name>:<path_to_mad>:[args]:[nice]:<tm_mad_name>:<em_mad_name>
     30
     31nice: Integer value, that will be added to the rank calculated for the hosts managed by this Information Driver.
     32      So you can prioritize, at a coarse level, hosts from different Information Drivers (or Grids).
     33}}}
     34{{{
     35new version (v5.4):
     36IM_MAD = <mad_name>:<path_to_mad>:[args]:<tm_mad_name>:<em_mad_name>
     37}}}
     38   * Now GridWay has remove [nice] field, so you may meet this error(Transfer MAD ($nice) not loaded for user gwuser) if you still set the [nice] field.
     39
     40
     41== References ==
     42
     43 * [http://www.gridway.org/documentation/stable5.4/GWAdmin.pdf GridWay 5.4 System Administrator's Guide]
     44 * [http://www.gridway.org/documentation/stable5.4/GWUser.pdf GridWay 5.4 User's Guide]