{% extends "base.html" %} {% set active = 'admin' %} {% block title %}Admin · SD RMM{% endblock %} {% block content %}

Admin

{% if reset_result %}

Temporary password set

A one-time password was set for {{ reset_result.email }}. Give it to them now — it won't be shown again:

{{ reset_result.password }}

Their MFA is unchanged (they still need their authenticator). Ask them to change this password after logging in.

{% endif %}

Organizations

{% if not orgs %}

No organizations yet.

{% else %} {% for o in orgs %} {% endfor %}
NameSlugAgents
{{ o.name }} {{ o.slug }} {{ o.agents | length }} Manage
{% endif %}

Users

{% if not users %}

No users yet.

{% else %} {% for u in users %} {% endfor %}
EmailRoleMFALast login
{{ u.email }} {% if u.is_super_admin %}super{% else %}user{% endif %} {% if u.totp_enrolled %}on{% else %}off{% endif %} {% if u.last_login_at %}{{ u.last_login_at| pt('%Y-%m-%d %H:%M') }}{% else %}never{% endif %}
{% endif %}

Remote control console

Direct access to the MeshCentral admin console (“SD Remote”). For everyday remote desktop you don’t need this — use the Remote desktop button on a device’s page (no login required). This is the full admin console, as a fallback.

Sign in as sd. The password is stored server-side (root-only) and is deliberately not shown here.

Open SD Remote console ↗

{% endblock %}