summary refs log tree commit diff
path: root/docs/usage
diff options
context:
space:
mode:
authorjejo86 <28619134+jejo86@users.noreply.github.com>2022-08-03 12:15:23 +0200
committerGitHub <noreply@github.com>2022-08-03 11:15:23 +0100
commit668597214f0cfeb9d7a642ef0564e73198b7bc82 (patch)
treed14051a32a70eb6c73bf4435c8f8747f32ee525e /docs/usage
parentUpdate doc for setting `macaroon_secret_key` (#13443) (diff)
downloadsynapse-668597214f0cfeb9d7a642ef0564e73198b7bc82.tar.xz
Improve documentation on becoming server admin (#13230)
* Improved section regarding server admin

Added steps describing how to elevate an existing user to administrator by manipulating a `postgres` database.

Signed-off-by: jejo86 28619134+jejo86@users.noreply.github.com

* Improved section regarding server admin

* Reference database settings

Add instructions to check database settings to find out the database name, instead of listing all available PostgreSQL databases.

* Add suggestions from PR conversation

Replace config filename `homeserver.yaml`. with "config file".
Remove instructions to switch to `postgres` user.
Add instructions how to connect to SQLite database.

* Update changelog.d/13230.doc

Co-authored-by: reivilibre <olivier@librepush.net>
Diffstat (limited to 'docs/usage')
-rw-r--r--docs/usage/administration/admin_api/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/usage/administration/admin_api/README.md b/docs/usage/administration/admin_api/README.md
index c60b6da0de..f11e0b19a6 100644
--- a/docs/usage/administration/admin_api/README.md
+++ b/docs/usage/administration/admin_api/README.md
@@ -5,8 +5,9 @@
 Many of the API calls in the admin api will require an `access_token` for a
 server admin. (Note that a server admin is distinct from a room admin.)
 
-A user can be marked as a server admin by updating the database directly, e.g.:
+An existing user can be marked as a server admin by updating the database directly.
 
+Check your [database settings](config_documentation.md#database) in the configuration file, connect to the correct database using either `psql [database name]` (if using PostgreSQL) or `sqlite3 path/to/your/database.db` (if using SQLite) and elevate the user `@foo:bar.com` to administrator.
 ```sql
 UPDATE users SET admin = 1 WHERE name = '@foo:bar.com';
 ```