diff --git a/src/server/install/index.md b/src/server/install/index.md
index afb4b328..5a022fa2 100644
--- a/src/server/install/index.md
+++ b/src/server/install/index.md
@@ -150,14 +150,15 @@ $ docker exec merginmaps-server flask server check
Output will be similar to the next snippet. The utility will try to provide some background information if some needed environment variable is missing or wrongly set (ex: `MERGIN_BASE_URL`)
```shell
-# Server health check
-
-Mergin Maps edition: Enterprise Edition
-Mergin Maps version: 2025.2.0
-Error: No base URL set. Please set MERGIN_BASE_URL environment variable
-Error: No contact email set. Please set CONTACT_EMAIL environment variable
-Database initialized properly
-Celery running properly
+ # Server health check
+
+ Mergin Maps edition: Enterprise Edition
+ Mergin Maps version: 2025.2.0
+ Error: No base URL set. Please set MERGIN_BASE_URL environment variable
+ Error: No contact email set. Please set CONTACT_EMAIL environment variable
+ Database initialized properly
+ Permissions granted for /data folder
+ Celery running properly
```
To test email configuration:
diff --git a/src/server/troubleshoot/index.md b/src/server/troubleshoot/index.md
index 50dca7f6..757dc625 100644
--- a/src/server/troubleshoot/index.md
+++ b/src/server/troubleshoot/index.md
@@ -53,6 +53,44 @@ Logs should contain information about sending emails with task `mergin.celery.se
[2024-12-09 10:37:16,265: INFO/ForkPoolWorker-2] Task mergin.celery.send_email_async[3e50df69-90c1-49be-b31c-78f1fb417500] succeeded in 0.11469305199989321s: None
```
+## Permissions
+
+You can check for `PermissionError` related errors using a built-in command line provided by .
+Just log to the main `server` container and run the following:
+
+```shell
+ docker exec merginmaps-server flask server permissions
+```
+
+The command line also accepts a specific path provided by the user (defaults to `/data`):
+
+```shell
+ docker exec merginmaps-server flask server permissions --path /my/path
+```
+
+If you have `PermissionError` related errors, please redo the following steps on your installation:
+
+
+```shell
+ export MERGIN_DIR=/path/to/your/projects
+ sudo mkdir -p $MERGIN_DIR
+ sudo find $MERGIN_DIR -type f -exec sudo chmod 640 {} \;
+ sudo find $MERGIN_DIR -type d -exec sudo chmod 750 {} \;
+ sudo find $MERGIN_DIR -type d -exec sudo chmod g+s {} \;
+ sudo chown -R 901:999 $MERGIN_DIR
+```
+
+For a complementary step needs to be made for the `overviews` mounted folder that enables [Webmaps](https://merginmaps.com/docs/manage/dashboard-maps/) on the platform.
+
+```shell
+ export MERGIN_DIR=/path/to/your/overviews
+ sudo mkdir -p $MERGIN_DIR
+ sudo find $MERGIN_DIR -type f -exec sudo chmod 640 {} \;
+ sudo find $MERGIN_DIR -type d -exec sudo chmod 750 {} \;
+ sudo find $MERGIN_DIR -type d -exec sudo chmod g+s {} \;
+ sudo chown -R 901:999 $MERGIN_DIR
+```
+
## Celery settings
Celery plays an important role on hence the need to quickly diagnose its functionality.