Changes between Version 8 and Version 9 of Software/eAM/g0Accountig
- Timestamp:
- Oct 2, 2014, 1:57:39 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Software/eAM/g0Accountig
v8 v9 1 1 [[TOC(Software/eAM/g*, depth=3)]] 2 === Accounting Services === 2 = Accounting and Scheduling = 3 4 Consist of multiple services. Based on LDAP; acess control with ssh keys scheduler, host attribute etc. 3 5 4 6 Two 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. … … 6 8 == Accounting Common == 7 9 8 Packaged in ''omf-aggmgr-accountingcommon'' package. 9 10 === Installation and Configuration === 10 Packaged in ''omf-aggmgr-accountingcommon'' package. This service doesn't have any independent configuration options. 11 11 12 12 == Control Panel == … … 16 16 === Installation and Configuration === 17 17 18 This service is installed with: 18 19 {{{ 19 20 apt-get install omf-aggmgr-controlpanel-5.4 20 21 }}} 22 The 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 36 The 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 }}}