oracle-oas
Copyright 2014 © LimePoint Pty Ltd. All rights reserved.
Supported Products
Oracle Analytics Server 5.5.0 OBIEE 12.2.1.3 OBIEE 12.2.1.4
Usage
To use this controller, you must define the following: * A domain * A managed server, either named bi_server1, or something matching the pattern you specify in template definition, which is in a cluster * The templateset MintPress::OracleAnalyticsServer::TemplateSet (Can just be specified as “OracleAnalyticsServer” in the json model). * The listen ports on components can be omitted, and indeed in previous versions of mintpress they were actually ignored even if specified * The system components obis1, obiccs1, obisch1, obips1, and obijh1 - via ruby API, they are defined such:
ruby include MintPress::OracleAnalyticsServer domain.system_components['obis1'] = OBISComponent.new(machine: domain.machines['nwtosi3.mintpress.io'], listen_port: 10000) domain.system_components['OBICCS1'] = OBICCSComponent.new(machine: domain.machines['nwtosi3.mintpress.io'], listen_port: 10100) domain.system_components['OBISCH1'] = OBISCHComponent.new(machine: domain.machines['nwtosi3.mintpress.io'], listen_port: 10200) domain.system_components['OBIPS1'] = OBIPSComponent.new(machine: domain.machines['nwtosi3.mintpress.io'], listen_port: 10300) domain.system_components['OBIJH1'] = OBIJHComponent.new(machine: domain.machines['nwtosi3.mintpress.io'], listen_port: 10400)
or in JSON format:
{
"systemComponentList": [
{
"name": "obis1",
"machineName": "oas_machine",
"componentType": "OBIS",
"attributes": {
"scaleout": "false",
"OBIS": {
"listen_port": "10000"
}
}
},
{
"name": "OBICCS1",
"machineName": "oas_machine",
"componentType": "OBICCS",
"attributes": {
"OBICCS": {
"listen_port": "10100"
}
}
},
{
"name": "OBISCH1",
"machineName": "oas_machine",
"componentType": "OBISCH",
"attributes": {
"OBICCS": {
"listen_port": "10200"
}
}
},
{
"name": "OBIPS1",
"machineName": "oas_machine",
"componentType": "OBIPS",
"attributes": {
"OBICCS": {
"listen_port": "10300"
}
}
},
{
"name": "OBIJH1",
"machineName": "oas_machine",
"componentType": "OBIJH",
"attributes": {
"OBICCS": {
"listen_port": "10400"
}
}
},
]
The following JSON attributes are supported for backwards compatability with older configurations - all newworld equivalents are properties of the template
-
obiee.config.bisystem -> configure_bisystem
-
obiee.configure.bip -> configure_publisher
-
obiee.bar.file -> bar_file
-
obiee.service.name -> service_name
-
obiee.singleton.folder -> singleton_folder
As well as the template name aliases ‘obiee’ and ‘oas’ - you can forward port an existing OBIEE 12.2.1.x json by simply changing the version on the installation to ‘5.5.0’ and setting the attribute ‘newworld’ to ‘true’ on each installation and domain. (This was the primary initial means of testing with json format, in fact).
License & Authors
-
Author:: LimePoint (support@limepoint.com)
# MintPress® - Automation and Configuration Management
#
# Copyright © 2014 LimePoint. All rights reserved.
#
# This program and its contents are confidential and owned by LimePoint.
# Only licenced users are permitted to access and use of this file.
# This program (or any part of it) may not be disclosed, copied or used
# except as expressly permitted in LimePoint’s End User Licence Agreement.
#
# LimePoint® and MintPress® are Registered Trademarks of LimePoint IP Limited.
# For more information contact LimePoint at http://www.limepoint.com