Add Central Points
You can configure multiple central points in SEI so they appear on the login page and are available for services such as 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 SEI configuration
- Open File Explorer and navigate to the appropriate folder for your installation:
C:\Program Files\Nectari\Nectari Server\WebServer\Web.configC:\Program Files\SEI\SEI Server\WebServer\Web.config.
- Locate the CentralPointDictionary section.
<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 the display name.
- Path: Enter the network UNC path using double backslashes (e.g.,
\\\\CPpath\\CentralPoint). - WebAppUrl: Specify the URL to your web server (e.g.,
https://yourserver:44381). - IsSageMode: Set to
falsefor SEI 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.