[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Help needed with node-config on multiple server

Status
Not open for further replies.
S

Srinivas Panyala

Guest
Please do the following modifications in node-config.json Provide the machine's IP address for serverUrl instead of localhost in both machines. "serverUrl": " http://localhost:8080" , Remove IP address from PROD1 internal root "internalRoot": " 192.168.1.20:8080/prod1" . It should be "internalRoot": "/prod1", E.g. If you are setting up multi-server environment with two machines. First machine's node-config.json file should have all the war entires except PROD1. Second machine's node-config.json file should have only one entry that is PROD1 Sample node-config.json file for PROD server { "serverUrl": " 192.168.1.20:8080", "components": [{ "name": "PROD1", "type": "PROD", "internalRoot": "/prod1", "externalRoot": "/prod1" }], // updateSharedProps section is only required in master nodes "updateSharedProps": { // Include shared properties that should override shared properties in database }, // nodeProps should be present on each node where the property should take effect "nodeProps": { "FontDirs": "", "StorageDir": "", "LogDir": "", "IndexDir": "" } } Thanks Srinivas

Continue reading...
 
Status
Not open for further replies.
Top