The platform administrator can create accounts for other platform users. There are two options for adding an account:

  • invite a user — an invitation letter will be sent to the user by email. To register, the user will need to click on the link from the email and come up with a password;

  • create a user — administrator sets the user password themselves.

Adding steps


To add an account:

  1. Go to the Users section →New user button.
  2. If the user is to be added to groups, select the desired Groups. If necessary, you can Create new group For more information on groups, see Restricting user access to the platform.
  3. Select adding option:
    • Invite users;

    • Create users.
  4. Select a User role for a user. Fore more information on roles, see User permissions:
    • User;
    • Advanced user;
    • Administrator.
  5. Add an Email of the user. This address will be used as the username.
  6. If you chose the Create user option, enter a Password or click generate. You can copy it to clipboard.
  7. Click Invite (Create) button.


Possible issues


Invitation link does not contain a domain name

If the domain name of the server is not set in the platform settings, the link in the invitation will contain the IP address of the server with VMmanager. For example, https://192.0.2.1/auth/invite/user/XXXXXXXXXXXXXXXXXXXX?domain=192.0.2.1&lang=ru. If you need the link to include the domain name:

  1. In the right menu click the icon → System information section→click the icon in the Domain name string → specify the domain name.
  2. Specify the domain name in the DomainName parameter of the /opt/ispsystem/vm/config.json configuration file on the server with VMmanager:

    Example of file

    {
      "DatabaseType":"mysql",
      "MysqlRootPassword": "secret",
      "LicenseToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "DomainName": "vmmanager.example.com",
      "CurrentVersion": "6.23.0"
    }
    CODE
    vmmanager.example.com — domain name of the server
  3. To apply the changes, run the command:

    vm start
    CODE