-
Edit the CATSevHypervisorService.conf file located in
APACHE_PATH/webapps/3DSpace/WEB-INF/classes
to define the
list of available services.
-
Define the following parameters:
Key
|
Value
|
dataPath
|
Is the directory containing compiled data for the hypervisor service. |
serviceList
|
Is the list of available services to be
defined in Step 3.
|
-
For each service, define the following parameters:
Key
|
Value
|
protocol
|
Is the communication protocol with the
server.
|
port
|
Is the port number.
|
host
|
Is either the server name or the IP
address.
|
name
|
Is the service name.
|
type
|
Is one service type between:
- Builder (for the Build service).
- Deploy (a Deploy service must be defined for each
Build service).
- ExecNode (for the Run service).
- Monitor (a Monitor service must be defined for the
server where the edition component is installed).
|
Example
The dataPath used in the following example is an example.
{
"dataPath": "<HOME_USER>/SEV/hypervisorData",
"serviceList": [
{ "protocol": "HTTP",
"port": "10490",
"host": "127.0.0.1",
"name": "monitorServlet-local",
"type": "Monitor" },
{"protocol": "HTTP",
"port": "10490",
"host": "127.0.0.1",
"name": "deployServlet-local",
"type": "Deploy" },
{ "protocol": "HTTP",
"port": "10490",
"host": "127.0.0.1",
"name": "execNodeServlet-local",
"type": "ExecNode" },
{ "protocol": "HTTP",
"port": "10490",
"host": "127.0.0.1",
"name": "buildServlet-local",
"type": "Builder" }
]
}