Sametime 12.0.2 Admin UI

Hello,

in version 12.0.2 there is the new adminUI available.

https://mystserver/admin/

https://opensource.hcltechsw.com/sametime-doc/v1202/admin/adminui_overview.html

To get access (and rights) to the adminUI i need to add/configure the following parameter to the custom.env with the concerning e-mail address of the adminuser (from ldap)

ADMINISTRATOR_USER=admin@novitest.local

Is there a way to add additional administration users to the adminUI ?

yes....but you need to do this by using the REST API:

Thank you @Erik Schwalb

It is quite difficult to implement (for me as a non designer), but i could now add new admins.

  1. login to sametime server (https) from an admin account
  2. switch to the api webside
  3. get CFS token within /authorize API
  4. set CFS token within /administrators API and set administrators e-mail within the body content

This interface is not working in an air-gapped network because it's using external JS files. Talked to HCL Support about it and came with a backend solution by adding them directly in Mongodb meeting.

Login to the mongo shell

use meeting

db.administrators.insertOne({"_id": (new ObjectId()).toString(), "email": "adams5@email.com"})