Changes between Version 3 and Version 4 of Internal/OMF-Note
- Timestamp:
- Mar 24, 2010, 2:36:04 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OMF-Note
v3 v4 1 1 When installing omg-aggmgr note the following: 2 2 3 1. In ogs.rb add variable that represents root directory of the application3 1. In ogs.rb add variable that represents root directory of the application 4 4 {{{ 5 5 DEF_VAR_PATH ="/usr/share/omf-aggmgr-5.2/omf-aggmgr" … … 10 10 cfg.merge!('varPath' => "#{DEF_VAR_PATH}") 11 11 }}} 12 3. Add file handler to public_html directory (this is necessary for grid status front-end and for new scheduler developing) 13 {{{ 14 path = DEF_VAR_PATH + "/public_html" 15 @@server.mount("/public_html/", HTTPServlet::FileHandler, path) { 16 raise HTTPStatus::NotFound, "#{path} not found." 17 } 18 }}} 19