Add Central Points
You can configure multiple Central Points in Nectari to appear on the login page and to be available for services like OLAP Manager and the Distribution Service. To do this, update both the web server’s Web.config file and the Scheduler API’s appsettings.json file.
Update the web server configuration
- Open File Explorer depending on your installation and navigate to:
C:\Program Files\Nectari\Nectari Server\WebServer\Web.configC:\Program Files\SEI\SEI Server\WebServer\Web.config.
- Locate the CentralPointDictionary tag.
<CentralPointDictionary>
<add key="CentralPoint" value="\\CPpath\CentralPoint" />
</CentralPointDictionary> - Modify the
key(display name) andvalue(UNC path) attributes for existing Central Points as needed. - Add a new Central Point by copying an
<add ... />line, then editing the key and value attributes for the new entry. - Save the
Web.configfile.
Update the Scheduler API configuration
- Open the
appsettings.jsonfile in:C:\Program Files\Nectari\Nectari Server\Scheduler\appsettings.jsonC:\Program Files\SEI\SEI Server\Scheduler\appsettings.json
- Find the CentralPoints section, specifically the LocalList:
"CentralPoints": {
"Provider": "Local",
"ApiHostName": "",
"LocalList": [
{
"Name": "CentralPoint",
"Path": "\\\\CpPath\\CentralPoint",
"WebAppUrl": "https://localhost:44381",
"IsSageMode": false
}
]
} - Edit these properties for each Central Point:
- Name: Set to your Central Point’s display name.
- Path: Set to the network UNC path for the Central Point (use double backslashes, e.g.
\\\\CPpath\\CentralPoint). - WebAppUrl: Enter the URL to your web server (e.g.,
https://yourserver:44381). - IsSageMode: Set to false for the Nectari Server.
- Add another Central Point by copying one entire object (
{ ... }) within LocalList, placing a comma between entries, and updating the details. - Save the
appsettings.jsonfile.