Changes between Version 8 and Version 9 of Software/eAM/g0Accountig


Ignore:
Timestamp:
Oct 2, 2014, 1:57:39 PM (10 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Software/eAM/g0Accountig

    v8 v9  
    11[[TOC(Software/eAM/g*, depth=3)]]
    2 === Accounting Services ===
     2= Accounting and Scheduling =
     3
     4Consist of multiple services. Based on LDAP; acess control with ssh keys scheduler, host attribute etc.
    35
    46Two OMF packages are shared among all acount management services: accountingCommon and controlPanlel. First contains common functions while the second provides front-end support for services such as scheduler, account management and status.
     
    68== Accounting Common  ==
    79
    8 Packaged in  ''omf-aggmgr-accountingcommon'' package.
    9 
    10 === Installation and Configuration ===
     10Packaged in  ''omf-aggmgr-accountingcommon'' package. This service doesn't have any independent configuration options.
    1111
    1212== Control Panel ==
     
    1616=== Installation and Configuration ===
    1717
     18This service is installed with:
    1819{{{
    1920apt-get install omf-aggmgr-controlpanel-5.4
    2021}}}
     22The configuration file is in /etc/omf-aggmgr-5.4/available/controlPanel.yaml and has the following entries:
     23{{{
     24# NOTE: use only 'spaces' to indent !
     25# ('tab' indents are not supported by the ruby yaml parser used to read this file)
     26#
     27# This is the Config file for the Control Panel Service
     28#
     29---
     30 controlPanel:
     31 
     32    # base url
     33    proxyPath: '/cPanel' 
     34}}}
     35
     36The only configurable option is the proxy URL path in the front-end apache configuration.
     37 
     38=== API ===
     39
     40{{{
     41<services>
     42  <serviceGroup name="controlPanel" prefix="/controlPanel">
     43    <info>Service for </info>
     44    <service name="serverTime">
     45      <info>Get server time</info>
     46    </service>
     47    <service name="start">
     48      <info>Control Panel</info>
     49    </service>
     50  </serviceGroup>
     51</services>
     52}}}