You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace `[user]`, `[password]`, `[hostname]`, `[port]`, and `[database]` with your actual database connection details. You can leave `SQLALCHEMY_ENGINE_OPTIONS` as is if the database does not use an SSL connection.
50
+
51
+
### Troubleshooting
52
+
OpenTAKServer does not produce detailed error reports when something is wrong with the configuration file or database. It's easier to temporarily turn the service off and run the program directly for debugging.
53
+
54
+
To get detailed feedback about connection issues, run OpenTAKServer directly instead of as a service:
55
+
56
+
```shell
57
+
sudo systemctl stop opentakserver.service
58
+
~/.opentakserver_venv/bin/opentakserver
59
+
```
60
+
61
+
If you encounter schema permission issues, ensure the database user owns the `public` schema. You may need to recreate it with the correct ownership.
62
+
63
+
Finally, stop the OTS process in the terminal (Ctrl+C) and restart the service:
0 commit comments