---
title: "TYPO3 backend administrator"
manual: "Getting Started"
version: "13.4"
permalink: "https://docs.typo3.org/permalink/t3start:backend-users-admin@13.4"
source: "Administration/BackendUsers/Administrator.rst"
modified: "2026-09-15T08:44:38+00:00"
---

# TYPO3 backend administrator

Each administrator that uses the TYPO3 backend should have their own personal
backend user account. This allows you to see who made which changes later on.

The administrator account that was automatically created for you during
[Installation](https://docs.typo3.org/permalink/t3start:installation-index@13.4)
has the widest rights possible and is a System Maintainer. The System Maintainer
is an Administrator who can also see and use the section
[Admin Tools](https://docs.typo3.org/permalink/t3start:admin-tools@13.4) in the
backend.

> [!TIP]
> If your Backend User account does not seem to work for some reason, check
> chapter [Troubleshooting common TYPO3 backend login problems](https://docs.typo3.org/permalink/t3start:troubleshooting-backend-login@13.4).

**Table of Contents**

-   [Creating a TYPO3 backend administrator](https://docs.typo3.org/permalink/t3start:creating-a-typo3-backend-administrator@13.4)
-   [Granting System Maintainer rights](https://docs.typo3.org/permalink/t3start:granting-system-maintainer-rights@13.4)

## Creating a TYPO3 backend administrator

There are 3 ways to create a new TYPO3 backend administrator:

**Table of Contents**

-   [Create an administrator using a console command](https://docs.typo3.org/permalink/t3start:create-an-administrator-using-a-console-command@13.4)
-   [Using the backend module "Backend Users" to create admins](https://docs.typo3.org/permalink/t3start:using-the-backend-module-backend-users-to-create-admins@13.4)
-   [Using the Install Tool to create an administrator](https://docs.typo3.org/permalink/t3start:using-the-install-tool-to-create-an-administrator@13.4)

### Create an administrator using a console command

In DDEV or on a server if you can use the console there is a console
command to create a new administrator:

**DDEV**

```bash
ddev typo3 backend:user:create
```

**On server**

```bash
vendor/bin/typo3 backend:user:create
```

When prompted answer that you want to create an administrator. If they should
also be a system maintainer, answer yes during the prompt.

### Using the backend module "Backend Users" to create admins

The first administrator got created for you during
[Installation](https://docs.typo3.org/permalink/t3start:installation-index@13.4).

When you log into the backend (See [Backend login](https://docs.typo3.org/permalink/t3start:backend-login@13.4))
you can go to module [Backend Users](https://docs.typo3.org/permalink/t3start:system-modules-backend-users@13.4)
and create a new administrator there.

![Screenshot of the "Backend Users" module demonstrating the location of the "Create new backend user" button in the module header](../../Images/ManualScreenshots/BackendUser/CreateUser.png)

When creating the user check the "Admin" option:

![The Admin option is the first option in the tab "General" in the backend user edit form](../../Images/ManualScreenshots/BackendUser/CreateAdmin.png)

You can [Grant System Maintainer rights](https://docs.typo3.org/permalink/t3start:backend-users-system-maintainer@13.4)
in the Admin Tools later on.

### Using the Install Tool to create an administrator

Access the Install Tool at `https://my-site.ddev.site/typo3/install.php` using
the Install Tool password defined during the installation process.

![The Install Tool: Create Administrative User, Create new administrative users and grant them system maintainer privileges (optional).](../../Images/ManualScreenshots/BackendUser/InstallTool.png)

If they should be a System Maintainer check the box.

## Granting System Maintainer rights

> [!NOTE]
> You must be logged in with a System Maintainer account or use the
> Install Tool to grant System Maintainer rights. In
> [Application context Development](https://docs.typo3.org/permalink/t3start:application-context@13.4)
> all backend administrators can use the module.

Using the module **Admin Tools > Settings** and card
"Manage System Maintainers Access" you can manage which administrator accounts
should be granted "System Maintainer" rights.

!["Manage System Maintainers" window in the Admin Tools.](../../Images/ManualScreenshots/BackendUser/ManageSystemMaintainers.png)

On saving the changes are written to file `config/system/settings.php`
therefore this file needs to be writable.

If your installation also has a file called `config/system/additional.php`
the settings can be overridden here. In this case changes you make in the
Admin Tools do not take effect.

A setting overriding the System Maintainer list could look like this:

**config/system/additional.php**

```php
$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemMaintainers'] => [
    1,
    3,
    42
];
```

This setting is also documented in
[systemMaintainers](https://docs.typo3.org/m/typo3/reference-coreapi/13.4/en-us/Configuration/Typo3ConfVars/SYS.html#confval-globals-typo3-conf-vars-sys-systemmaintainers).
