System Organization

Introduction

The System Organization is a special organization that exists on every Relution server. When a new installation of Relution is made, the first login is usually as system administrator on the system organization.

This can be used, for example, to create additional organizations or to give users rights in more than one organization.
In this organization, no further functions are available, such as the enrollment of devices or the like.

Configuration

The credentials of the system administrator should be initially set in the application.yml when installing the server.

relution:
  system:
    admin:
      password: <password>
      email: <email>

For a Docker installation, the initial password can be defined analogously in docker-compose.yml

services:
  relution:
    ...
    environment:
      ...
      - RELUTION_SYSTEM_ADMIN_PASSWORD=<password>
      - RELUTION_SYSTEM_ADMIN_EMAIL=<email>

Security Notes.

The user name to access the system organization is admin. If the combination of user name and password is not unique, the unique name of the system organization can additionally be prefixed: system\admin Via the system-organization an administrative access to all other Relution-organizations is possible. Therefore the access is very sensitive.
For security reasons, we recommend that you always use a separate, secure password for the system organization.