Skip to content

Admin manual

Drilio edited this page Dec 6, 2024 · 47 revisions

Docker stack overview

Deploy

Promote user to admin

1 - Connect to mariadb container using

docker-compose exec db /bin/bash

2 - Then exec :

mariadb -uroot -p

3 - Promote user :

UPDATE multiUsers.`user` SET `_isAdmin` = 1 WHERE id = <USER ID>

If you want to revocke the Admin status execute stape 1 and 2 ans then :

UPDATE multiUsers.`user` SET `_isAdmin` = 0 WHERE id = <USER ID>

Impersonate user

Access database

Logs

Clone this wiki locally