Changes between Version 1 and Version 2 of FeddConfigExamples


Ignore:
Timestamp:
Dec 11, 2008 11:59:48 AM (15 years ago)
Author:
faber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FeddConfigExamples

    v1 v2  
    22
    33This page gives several `fedd` layouts and the configuration files that support them.  You can take them either as starting points from which to create your own configuration or as demonstrations of how the parameters in the [FeddConfig configuration files] and [FeddDatabases databases] work together.
     4
     5== Static Access Only on Users ==
     6
     7This is the simplest configuration of `fedd`, used to allow users of other testbeds to use resources from yours using pre-configured projects.  The layout assumes that for each [FeddAbout#GlobalIdentifiers:Three-levelName] three-level name] you are willing to allow to use your testbed, you have set up a project that already has proper keys installed.  Because no local projects or local users need to be modified, `fedd` does not need access to boss.
     8
     9A commented fedd.conf (installed in `/usr/local/etc/fedd.conf`) on `users.isi.deterlab.net` might look like this:
     10
     11{{{
     12[access]
     13# Keep access state (which experiments are live) in this file
     14# Be sure it is writeable by the fedd user
     15access_state: /var/db/fedd/deter_access.state
     16
     17# Parameters for remote fedds to instantiate experiments
     18boss: boss
     19ops: users
     20domain: .isi.deterlab.net
     21fileserver: fs
     22eventserver: event-server
     23
     24# This machine's URI to discriminate proxy requests
     25testbed: https://users.isi.deterlab.net:23235
     26
     27# The database that maps requester to local acces projects
     28accessdb: /usr/local/etc/fedd/deter_access
     29
     30[allocate]
     31allocation_level: none
     32allocate_state: /var/db/fedd/deter_allocate.state
     33
     34[globals]
     35cert_file: /usr/local/etc/fedd/fedd.pem
     36services: 23235
     37
     38}}}